home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 March / PCWorld_2008-03_cd.bin / v cisle / mediacoder / MediaCoder-0.6.1.4045.exe / tools / sysinfo.js < prev    next >
Text File  |  2007-03-11  |  200KB  |  5,112 lines

  1. /*
  2.    WMI Administrator script. January 8, 2007. v.1.1.
  3.  
  4.    Copyright (C) 2006-2007 Dmitriy Khudorozhkov
  5.    Modified by Stanley Huang
  6.  
  7.    This software is provided "as-is", without any express or implied warranty.
  8.    In no event will the author be held liable for any damages arising from the
  9.    use of this software.
  10.  
  11.    Permission is granted to anyone to use this software for any purpose,
  12.    including commercial applications, and to alter it and redistribute it
  13.    freely, subject to the following restrictions:
  14.  
  15.    1. The origin of this software must not be misrepresented; you must not
  16.       claim that you wrote the original software. If you use this software
  17.       in a product, an acknowledgment in the product documentation would be
  18.       appreciated but is not required.
  19.  
  20.    2. Altered source versions must be plainly marked as such, and must not be
  21.       misrepresented as being the original software.
  22.  
  23.    3. This notice may not be removed or altered from any source distribution.
  24.  
  25. */
  26.  
  27. var wmic = null;
  28. var Args = WScript.Arguments;
  29. var xslfile = null;
  30. var encoding = "UTF-8";
  31.  
  32. if(Args.length > 0) {
  33.     xslfile = Args(0);
  34. }
  35. if (Args.length > 1) {
  36.      encoding = Args(1);
  37. }
  38.  
  39. wmic = new WMIcollector("127.0.0.1");
  40. wmic.RunQuery();
  41.  
  42. function WMIcollector(ips)
  43. {
  44.   // ctor:
  45.  
  46.   this.ip      = [];
  47.   this.service = [];
  48.   this.curserv = null;
  49.   this.silent  = false;
  50.  
  51.   if(typeof(ips) == "string")
  52.     this.ip[this.ip.length] = ips;
  53.   else
  54.     if(ips.constructor == Array)
  55.     {
  56.       for(var i = 0; i < ips.length; i++)
  57.       {
  58.         var _ip = ips[i];
  59.         var found = false;
  60.  
  61.         for(var j = 0; j < this.ip.length; j++)
  62.         {
  63.           if(this.ip[j] == _ip)
  64.           {
  65.             found = true;
  66.             break;
  67.           }
  68.         }
  69.  
  70.         if(!found)
  71.           this.ip[this.ip.length] = _ip;
  72.       }
  73.     }
  74.  
  75.   // Public API:
  76.  
  77.   this.RunQuery = function()
  78.   {
  79.     // SAXreader/MXXMLwriter are used to create & save 'neat' xml files.
  80.     //
  81.     var writer = new ActiveXObject("Msxml2.MXXMLWriter.3.0");
  82.  
  83.     writer.indent = true;            // write xml in a 'pretty printed'-way
  84.     writer.omitXMLDeclaration = true;
  85.  
  86.     var reader = new ActiveXObject("Msxml2.SAXXMLReader.3.0");
  87.  
  88.     reader.contentHandler = writer;
  89.     reader.errorHandler = writer;
  90.     //
  91.     // You can also use 'Msxml2.SAXXMLReader.4.0' and 'Msxml2.MXXMLWriter.4.0'
  92.     // (= more detailed error messages) with MSXML 4.0 (or higher) installed.
  93.  
  94.  
  95.       // Note on creating & saving xml files:
  96.       //
  97.       // if you are sure that computers you query return nothing that falls
  98.       // out of an ordinary ASCII charset, you may wish to switch back to
  99.       // saving single-byte data (by switching the last parameter of 'CreateTextFile'
  100.       // to 'false' and changing 'encoding' variable to 'UTF-8', 'iso-8859-1',
  101.       // 'Windows-1250' or anything that fits your locale), thus saving
  102.       // ~50% of disk space.
  103.       //
  104.       // 1st parameter - file name;
  105.       // 2nd parameter - overwrite existing file (true/false);
  106.       // 3rd parameter - create unicode (true) or ASCII(false) file.
  107.       //
  108.  
  109.       // Change this encoding to any that fits:
  110.       // (having created the unicode file, you should keep it UTF-16)
  111.       //
  112.  
  113.       // Main call:
  114.       var result = this._collectAll("127.0.0.1");
  115.       reader.parse(result.xml);
  116.       WScript.Echo("<?xml version=\"1.0\" encoding=\"" + encoding + "\"?>");
  117.       if (xslfile) WScript.Echo("<?xml-stylesheet type=\"text/xsl\" href=\"" + xslfile + "\"?>");
  118.       WScript.Echo(writer.output);
  119.   }
  120.  
  121.   this.SetSilentMode = function(issilent) { this.silent = issilent; }
  122.  
  123.   // String helper functions:
  124.  
  125.   this._trim = function(src)
  126.   {
  127.     var str_src = String(src);
  128.  
  129.     // Leading spaces:
  130.     var empty = true;
  131.     for(var l = 0; l < str_src.length; l++)
  132.     {
  133.       if(str_src.charAt(l) != " ")
  134.       {
  135.         empty = false;
  136.         break;
  137.       }
  138.     }
  139.  
  140.     if(empty) return "";
  141.  
  142.     // Trailing spaces:
  143.     for(var t = str_src.length - 1; t >= 0; t--)
  144.     {
  145.       if(str_src.charAt(t) != " ")
  146.         break;
  147.     }
  148.  
  149.     return str_src.substring(l, t + 1);
  150.   }
  151.  
  152.   this._isempty = function(str)
  153.   {
  154.     if((String(str) == "null") || (this._trim(String(str)) == ""))
  155.       return true;
  156.  
  157.     return false;
  158.   }
  159.  
  160.   // XML helper functions:
  161.  
  162.   this._xmlSetAttribute = function(doc, node, attributeName, attributeValue)
  163.   {
  164.     var Attribute = doc.createAttribute(attributeName);
  165.     var AttributeText = doc.createTextNode(this._trim(attributeValue));
  166.  
  167.     Attribute.appendChild(AttributeText);
  168.     node.setAttributeNode(Attribute);
  169.   }
  170.  
  171.   this._xmlCreateChildNode = function(doc, parent, nodeName)
  172.   {
  173.     var Element = doc.createElement(nodeName);
  174.  
  175.     parent.appendChild(Element);
  176.  
  177.     return Element;
  178.   }
  179.  
  180.   this._xmlCreateChildNodeWithAttribute = function(doc, parent, nodeName, attributeName, attributeValue)
  181.   {
  182.     var Element = doc.createElement(nodeName);
  183.  
  184.     parent.appendChild(Element);
  185.  
  186.     this._xmlSetAttribute(doc, Element, attributeName, String(attributeValue));
  187.  
  188.     return Element;
  189.   }
  190.  
  191.   this._xmlCreateChildTextNode = function(doc, parent, nodeName, nodeContent)
  192.   {
  193.     var str = this._trim(String(nodeContent));
  194.  
  195.     if(this._isempty(str)) return null;
  196.  
  197.     var Element = doc.createElement(nodeName);
  198.     var ElementText = doc.createTextNode(str);
  199.  
  200.     parent.appendChild(Element);
  201.     Element.appendChild(ElementText);
  202.  
  203.     return Element;
  204.   }
  205.  
  206.   this._xmlCreateChildTextNodeWithAttribute = function(doc, parent, nodeName, nodeContent, attributeName, attributeValue)
  207.   {
  208.     var str = this._trim(String(nodeContent));
  209.  
  210.     if(this._isempty(str)) return null;
  211.  
  212.     var Element = doc.createElement(nodeName);
  213.     var ElementText = doc.createTextNode(str);
  214.  
  215.     parent.appendChild(Element);
  216.     Element.appendChild(ElementText);
  217.  
  218.     this._xmlSetAttribute(doc, Element, attributeName, attributeValue);
  219.  
  220.     return Element;
  221.   }
  222.  
  223.   // WMI setup & query routines:
  224.  
  225.   this._SetupService = function(ip)
  226.   {
  227.     if(!this.service[ip])
  228.         this.service[ip] = GetObject("winmgmts:{impersonationLevel=impersonate}!//" + ip + "/root/cimv2");
  229.  
  230.     this.curserv = this.service[ip];
  231.   }
  232.  
  233.   this._ExecQuery = function(className)
  234.   {
  235.     return this.curserv.ExecQuery("Select * from " + className);
  236.   }
  237.  
  238.   this._ExecQueryWithWhereClause = function(className, whereExpression)
  239.   {
  240.     return this.curserv.ExecQuery("Select * from " + className + " Where " + whereExpression);
  241.   }
  242.  
  243.   // Primary data collection functions:
  244.  
  245.   this._collectAll = function(ip)
  246.   {
  247.     var xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  248.     var root = xmlDoc.createElement("Root");
  249.     xmlDoc.appendChild(root);
  250.  
  251.     /*
  252.     var meta = this._xmlCreateChildNode(xmlDoc, root, "Metadata");
  253.     this._xmlCreateChildTextNode(xmlDoc, meta, "IP", ip);
  254.  
  255.     var dt = new Date();
  256.     this._xmlCreateChildTextNode(xmlDoc, meta, "Date", (dt.getMonth() + 1) + "/" + dt.getDate() + "/" + dt.getFullYear());
  257.     this._xmlCreateChildTextNode(xmlDoc, meta, "Time", (dt.getHours() < 10 ? "0" + dt.getHours() : dt.getHours()) + ":" +
  258.                                                  (dt.getMinutes() < 10 ? "0" + dt.getMinutes() : dt.getMinutes()) + ":" +
  259.                                                  (dt.getSeconds() < 10 ? "0" + dt.getSeconds() : dt.getSeconds()));
  260.     */
  261.  
  262.     this._SetupService(ip);
  263.  
  264.     var hard = this._collectHardwareInfo().firstChild;
  265.     root.appendChild(hard);
  266.  
  267.     var soft = this._collectSoftwareInfo(ip).firstChild;
  268.     root.appendChild(soft);
  269.  
  270.     return xmlDoc;
  271.   }
  272.  
  273.   this._collectHardwareInfo = function()
  274.   {
  275.     var xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  276.     var root = xmlDoc.createElement("Hardware");
  277.     xmlDoc.appendChild(root);
  278.  
  279.     var result = this._collectBaseBoardInfo();
  280.     if (result) root.appendChild(result.firstChild);
  281.  
  282.     result = this._collectProcessorInfo();
  283.     if (result) root.appendChild(result.firstChild);
  284.  
  285.     result = this._collectBiosInfo();
  286.     if (result) root.appendChild(result.firstChild);
  287.  
  288.     result = this._collectMemoryInfo();
  289.     if (result) root.appendChild(result.firstChild);
  290.  
  291.     result = this._collectDiskDrivesInfo();
  292.     if (result) root.appendChild(result.firstChild);
  293.  
  294.     result = this._collectCDROMInfo();
  295.     if (result) root.appendChild(result.firstChild);
  296.  
  297.     result = this._collectFloppyInfo();
  298.     if (result) root.appendChild(result.firstChild);
  299.  
  300.     result = this._collectTapeDriveInfo();
  301.     if (result) root.appendChild(result.firstChild);
  302.  
  303.     result = this._collectIdeControllerInfo();
  304.     if (result) root.appendChild(result.firstChild);
  305.  
  306.     result = this._collectScsiControllerInfo();
  307.     if (result) root.appendChild(result.firstChild);
  308.  
  309.     result = this._collect1394ControllerInfo();
  310.     if (result) root.appendChild(result.firstChild);
  311.  
  312.     result = this._collectUsbControllerInfo();
  313.     if (result) root.appendChild(result.firstChild);
  314.  
  315.     result = this._collectPcmciaControllerInfo();
  316.     if (result) root.appendChild(result.firstChild);
  317.  
  318.     result = this._collectSerialPortInfo();
  319.     if (result) root.appendChild(result.firstChild);
  320.  
  321.     result = this._collectParallelPortInfo();
  322.     if (result) root.appendChild(result.firstChild);
  323.  
  324.     result = this._collectPortConnectorsInfo();
  325.     if (result) root.appendChild(result.firstChild);
  326.  
  327.     result = this._collectIrDeviceInfo();
  328.     if (result) root.appendChild(result.firstChild);
  329.  
  330.     result = this._collectNetworkAdapterInfo();
  331.     if (result) root.appendChild(result.firstChild);
  332.  
  333.     result = this._collectDisplayInfo();
  334.     if (result) root.appendChild(result.firstChild);
  335.  
  336.     result = this._collectVideoAdapterInfo();
  337.     if (result) root.appendChild(result.firstChild);
  338.  
  339.     result = this._collectKeyboardInfo();
  340.     if (result) root.appendChild(result.firstChild);
  341.  
  342.     result = this._collectPointingDeviceInfo();
  343.     if (result) root.appendChild(result.firstChild);
  344.  
  345.     result = this._collectSoundInfo();
  346.     if (result) root.appendChild(result.firstChild);
  347.  
  348.     result = this._collectPrinterInfo();
  349.     if (result) root.appendChild(result.firstChild);
  350.  
  351.     result = this._collectPOTSModemInfo();
  352.     if (result) root.appendChild(result.firstChild);
  353.  
  354.     /* Cooling devices: */
  355.     result = this._collectFanInfo();
  356.     if (result) root.appendChild(result.firstChild);
  357.  
  358.     result = this._collectHeatPipeInfo();
  359.     if (result) root.appendChild(result.firstChild);
  360.  
  361.     result = this._collectRefrigerationInfo();
  362.     if (result) root.appendChild(result.firstChild);
  363.  
  364.     result = this._collectSystemEnclosureInfo();
  365.     if (result) root.appendChild(result.firstChild);
  366.  
  367.     /* Power supply devices: */
  368.     result = this._collectBatteryInfo();
  369.     if (result) root.appendChild(result.firstChild);
  370.  
  371.     result = this._collectPortableBatteryInfo();
  372.     if (result) root.appendChild(result.firstChild);
  373.  
  374.     result = this._collectUPSInfo();
  375.     if (result) root.appendChild(result.firstChild);
  376.  
  377.     return xmlDoc;
  378.   }
  379.  
  380.   this._collectSoftwareInfo = function(ip)
  381.   {
  382.     var xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  383.     var root = xmlDoc.createElement("Software");
  384.     xmlDoc.appendChild(root);
  385.  
  386.     var result = this._collectComputerSystemInfo();
  387.     if (result) root.appendChild(result.firstChild);
  388.  
  389.     result = this._collectOsInfo();
  390.     if (result) root.appendChild(result.firstChild);
  391.  
  392.     result = this._collectOSBootInfo();
  393.     if (result) root.appendChild(result.firstChild);
  394.  
  395.     /*
  396.     result = this._collectOSRecoveryInfo();
  397.     if (result) root.appendChild(result.firstChild);
  398.  
  399.     result = this._collectQFEInfo();
  400.     if (result) root.appendChild(result.firstChild);
  401.  
  402.     result = this._collectODBCDataSourceInfo();
  403.     if (result) root.appendChild(result.firstChild);
  404.  
  405.     result = this._collectODBCDriverInfo();
  406.     if (result) root.appendChild(result.firstChild);
  407.  
  408.     result = this._collectODBCTranslatorInfo();
  409.     if (result) root.appendChild(result.firstChild);
  410.  
  411.     result = this._collectUserInfo();
  412.     if (result) root.appendChild(result.firstChild);
  413.  
  414.     result = this._collectGroupInfo();
  415.     if (result) root.appendChild(result.firstChild);
  416.  
  417.     result = this._collectLogonSessionInfo();
  418.     if (result) root.appendChild(result.firstChild);
  419.  
  420.     result = this._collectNetworkLoginProfileInfo();
  421.     if (result) root.appendChild(result.firstChild);
  422.  
  423.     result = this._collectProductInfo();
  424.     if (result) root.appendChild(result.firstChild);
  425.  
  426.     result = this._collectNetworkProtocolInfo();
  427.     if (result) root.appendChild(result.firstChild);
  428.  
  429.     result = this._collectTimeInfo();
  430.     if (result) root.appendChild(result.firstChild);
  431.  
  432.     result = this._collectTimeZoneInfo();
  433.     if (result) root.appendChild(result.firstChild);
  434.  
  435.     result = this._collectPingData(ip);
  436.     if (result) root.appendChild(result.firstChild);
  437.    */ 
  438.  
  439.     result = this._collectCodecInfo();
  440.     if (result) root.appendChild(result.firstChild);
  441.  
  442.     return xmlDoc;
  443.   }
  444.  
  445.   // Hardware monitoring:
  446.  
  447.   this._collect1394ControllerInfo = function()
  448.   {
  449.     var fc = new Enumerator(this._ExecQuery("Win32_1394Controller"));
  450.  
  451.     var xmlDoc = null, colItem = null, numItems = 0;
  452.  
  453.     for (; !fc.atEnd(); fc.moveNext())
  454.       numItems++;
  455.  
  456.     if(numItems > 0)
  457.     {
  458.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  459.  
  460.       if(numItems > 1)
  461.       {
  462.         colItem = xmlDoc.createElement("Item");
  463.         xmlDoc.appendChild(colItem);
  464.         this._xmlSetAttribute(xmlDoc, colItem, "name", "IEEE 1394 Controllers");
  465.       }
  466.  
  467.       var i = 1;
  468.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  469.       {
  470.         var Obj = fc.item();
  471.  
  472.         var root, num = "";
  473.         if(colItem)
  474.         {
  475.           root = xmlDoc.createElement("Element");
  476.           num = " " + String(i);
  477.         }
  478.         else
  479.         {
  480.           root = xmlDoc.createElement("Item");
  481.         }
  482.  
  483.         this._xmlSetAttribute(xmlDoc, root, "name", "IEEE 1394 Controller" + num);
  484.         if(colItem)
  485.         {
  486.           colItem.appendChild(root);
  487.         }
  488.         else
  489.         {
  490.           xmlDoc.appendChild(root);
  491.         }
  492.  
  493.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  494.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  495.         this._xmlCreateChildTextNode(xmlDoc, root, "Manufacturer", Obj.Manufacturer);
  496.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  497.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  498.  
  499.         i++;
  500.       }
  501.     }
  502.  
  503.     return xmlDoc;
  504.   }
  505.  
  506.   this._collectBaseBoardInfo = function()
  507.   {
  508.     var fc = new Enumerator(this._ExecQuery("Win32_BaseBoard"));
  509.  
  510.     var xmlDoc = null, colItem = null, numItems = 0;
  511.  
  512.     for (; !fc.atEnd(); fc.moveNext())
  513.       numItems++;
  514.  
  515.     // Anyone seen a desktop with multiple baseboards?
  516.     if(numItems > 0)
  517.     {
  518.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  519.  
  520.       if(numItems > 1)
  521.       {
  522.         colItem = xmlDoc.createElement("Item");
  523.         xmlDoc.appendChild(colItem);
  524.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Base Boards");
  525.       }
  526.  
  527.       var i = 1;
  528.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  529.       {
  530.         var Obj = fc.item();
  531.  
  532.         var root, num = "";
  533.         if(colItem)
  534.         {
  535.           root = xmlDoc.createElement("Element");
  536.           num = " " + String(i);
  537.         }
  538.         else
  539.         {
  540.           root = xmlDoc.createElement("Item");
  541.         }
  542.  
  543.         this._xmlSetAttribute(xmlDoc, root, "name", "Base board" + num);
  544.         if(colItem)
  545.         {
  546.           colItem.appendChild(root);
  547.         }
  548.         else
  549.         {
  550.           xmlDoc.appendChild(root);
  551.         }
  552.  
  553.         if(Obj.ConfigOptions != null)
  554.         {
  555.           var config_node = this._xmlCreateChildNodeWithAttribute(xmlDoc, root, "Config", "name", "Configuration of the jumpers and switches");
  556.  
  557.           var i_count = 1;
  558.           var cs = Obj.ConfigOptions.toArray();
  559.           var cc = new Enumerator(cs);
  560.  
  561.           for (; !cc.atEnd(); cc.moveNext())
  562.           {
  563.             var conf_obj = cc.item();
  564.             this._xmlCreateChildTextNodeWithAttribute(xmlDoc, config_node, "Option" + String(i_count), String(conf_obj), "name", "Option " + String(i_count));
  565.  
  566.             i_count++;
  567.           }
  568.         }
  569.  
  570.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "HostingBoard", Obj.HostingBoard, "name", "Is motherboard?");
  571.         this._xmlCreateChildTextNode(xmlDoc, root, "Manufacturer", Obj.Manufacturer);
  572.         this._xmlCreateChildTextNode(xmlDoc, root, "Model", Obj.Model);
  573.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  574.         this._xmlCreateChildTextNode(xmlDoc, root, "Product", Obj.Product);
  575.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "RequiresDaughterBoard", Obj.RequiresDaughterBoard, "name", "Requires Daughterboard");
  576.         this._xmlCreateChildTextNode(xmlDoc, root, "SerialNumber", Obj.SerialNumber);
  577.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  578.         this._xmlCreateChildTextNode(xmlDoc, root, "Version", Obj.Version);
  579.  
  580.         i++;
  581.       }
  582.     }
  583.  
  584.     return xmlDoc;
  585.   }
  586.  
  587.   this._collectProcessorInfo = function()
  588.   {
  589.     var fc = new Enumerator(this._ExecQuery("Win32_Processor"));
  590.  
  591.     var xmlDoc = null, colItem = null, numItems = 0;
  592.  
  593.     for (; !fc.atEnd(); fc.moveNext())
  594.       numItems++;
  595.  
  596.     if(numItems > 0)
  597.     {
  598.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  599.  
  600.       if(numItems > 1)
  601.       {
  602.         colItem = xmlDoc.createElement("Item");
  603.         xmlDoc.appendChild(colItem);
  604.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Processors");
  605.       }
  606.  
  607.       var i = 1;
  608.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  609.       {
  610.         var Obj = fc.item();
  611.  
  612.         var root, num = "";
  613.         if(colItem)
  614.         {
  615.           root = xmlDoc.createElement("Element");
  616.           num = " " + String(i);
  617.         }
  618.         else
  619.         {
  620.           root = xmlDoc.createElement("Item");
  621.         }
  622.  
  623.         this._xmlSetAttribute(xmlDoc, root, "name", "Processor" + num);
  624.         if(colItem)
  625.         {
  626.           colItem.appendChild(root);
  627.         }
  628.         else
  629.         {
  630.           xmlDoc.appendChild(root);
  631.         }
  632.  
  633.         this._xmlCreateChildTextNode(xmlDoc, root, "Architecture", this._translate_processor_architecture(Obj.Architecture));
  634.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  635.         this._xmlCreateChildTextNode(xmlDoc, root, "Caption", Obj.Caption);
  636.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "CpuStatus", this._translate_processor_status(Obj.CpuStatus), "name", "CPU status");
  637.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "CurrentClockSpeed", Obj.CurrentClockSpeed, "name", "Current clock speed, MHz");
  638.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "CurrentVoltage", Obj.CurrentVoltage, "name", "Current voltage, V");
  639.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  640.         this._xmlCreateChildTextNode(xmlDoc, root, "Family", this._translate_processor_family(Obj.Family));
  641.         this._xmlCreateChildTextNode(xmlDoc, root, "Manufacturer", Obj.Manufacturer);
  642.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MaxClockSpeed", Obj.MaxClockSpeed, "name", "Maximum clock speed, MHz");
  643.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  644.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ProcessorId", Obj.ProcessorId, "name", "Processor ID");
  645.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ProcessorType", this._translate_processor_type(Obj.ProcessorType), "name", "Processor type");
  646.         this._xmlCreateChildTextNode(xmlDoc, root, "Revision", Obj.Revision);
  647.         this._xmlCreateChildTextNode(xmlDoc, root, "Role", Obj.Role);
  648.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SocketDesignation", Obj.SocketDesignation, "name", "Socket type");
  649.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  650.         this._xmlCreateChildTextNode(xmlDoc, root, "Version", Obj.Version);
  651.  
  652.         i++;
  653.       }
  654.     }
  655.  
  656.     return xmlDoc;
  657.   }
  658.  
  659.   this._collectBiosInfo = function()
  660.   {
  661.     var fc = new Enumerator(this._ExecQuery("Win32_BIOS"));
  662.  
  663.     var xmlDoc = null, colItem = null, numItems = 0;
  664.  
  665.     for (; !fc.atEnd(); fc.moveNext())
  666.       numItems++;
  667.  
  668.     if(numItems > 0)
  669.     {
  670.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  671.  
  672.       if(numItems > 1)
  673.       {
  674.         colItem = xmlDoc.createElement("Item");
  675.         xmlDoc.appendChild(colItem);
  676.         this._xmlSetAttribute(xmlDoc, colItem, "name", "BIOSs");
  677.       }
  678.  
  679.       var i = 1;
  680.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  681.       {
  682.         var Obj = fc.item();
  683.  
  684.         var root, num = "";
  685.         if(colItem)
  686.         {
  687.           root = xmlDoc.createElement("Element");
  688.           num = " " + String(i);
  689.         }
  690.         else
  691.         {
  692.           root = xmlDoc.createElement("Item");
  693.         }
  694.  
  695.         this._xmlSetAttribute(xmlDoc, root, "name", "BIOS" + num);
  696.         if(colItem)
  697.         {
  698.           colItem.appendChild(root);
  699.         }
  700.         else
  701.         {
  702.           xmlDoc.appendChild(root);
  703.         }
  704.  
  705.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "IdentificationCode", Obj.IdentificationCode, "name", "Identification code");
  706.         this._xmlCreateChildTextNode(xmlDoc, root, "Manufacturer", Obj.Manufacturer);
  707.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  708.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ReleaseDate", this._translate_date(Obj.ReleaseDate), "name", "Release date");
  709.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  710.         this._xmlCreateChildTextNode(xmlDoc, root, "Version", Obj.Version);
  711.  
  712.         if(Obj.BiosCharacteristics != null)
  713.         {
  714.           var char_node = this._xmlCreateChildNodeWithAttribute(xmlDoc, root, "BIOSCharacteristics", "name", "BIOS Features");
  715.  
  716.           var i_count = 1;
  717.           var chars_ar = Obj.BiosCharacteristics.toArray();
  718.           var chars_en = new Enumerator(chars_ar);
  719.  
  720.           for (; !chars_en.atEnd(); chars_en.moveNext())
  721.           {
  722.             var ch_obj = chars_en.item();
  723.             this._xmlCreateChildTextNodeWithAttribute(xmlDoc, char_node, "Characteristic_" + String(i_count), this._translate_bios_feats(ch_obj), "name", "Feature " + String(i_count));
  724.  
  725.             i_count++;
  726.           }
  727.         }
  728.  
  729.         i++;
  730.       }
  731.     }
  732.  
  733.     return xmlDoc;
  734.   }
  735.  
  736.   this._collectSoundInfo = function()
  737.   {
  738.     var fc = new Enumerator(this._ExecQuery("Win32_SoundDevice"));
  739.  
  740.     var xmlDoc = null, colItem = null, numItems = 0;
  741.  
  742.     for (; !fc.atEnd(); fc.moveNext())
  743.       numItems++;
  744.  
  745.     if(numItems > 0)
  746.     {
  747.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  748.  
  749.       if(numItems > 1)
  750.       {
  751.         colItem = xmlDoc.createElement("Item");
  752.         xmlDoc.appendChild(colItem);
  753.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Sound devices");
  754.       }
  755.  
  756.       var i = 1;
  757.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  758.       {
  759.         var Obj = fc.item();
  760.  
  761.         var root, num = "";
  762.         if(colItem)
  763.         {
  764.           root = xmlDoc.createElement("Element");
  765.           num = " " + String(i);
  766.         }
  767.         else
  768.         {
  769.           root = xmlDoc.createElement("Item");
  770.         }
  771.  
  772.         this._xmlSetAttribute(xmlDoc, root, "name", "Sound device" + num);
  773.         if(colItem)
  774.         {
  775.           colItem.appendChild(root);
  776.         }
  777.         else
  778.         {
  779.           xmlDoc.appendChild(root);
  780.         }
  781.  
  782.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  783.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  784.         this._xmlCreateChildTextNode(xmlDoc, root, "Manufacturer", Obj.Manufacturer);
  785.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ProductName", Obj.ProductName, "name", "Product name");
  786.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  787.  
  788.         i++;
  789.       }
  790.     }
  791.  
  792.     return xmlDoc;
  793.   }
  794.  
  795.   this._collectMemoryInfo = function()
  796.   {
  797.     var fc = new Enumerator(this._ExecQuery("Win32_PhysicalMemory"));
  798.  
  799.       var xmlDoc = null, colItem = null, numItems = 0;
  800.  
  801.       for (; !fc.atEnd(); fc.moveNext())
  802.         numItems++;
  803.  
  804.     if(numItems > 0)
  805.     {
  806.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  807.  
  808.       if(numItems > 1)
  809.       {
  810.         colItem = xmlDoc.createElement("Item");
  811.         xmlDoc.appendChild(colItem);
  812.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Physical Memory Banks");
  813.       }
  814.  
  815.       var i = 1;
  816.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  817.       {
  818.         var Obj = fc.item();
  819.  
  820.         var root, num = "";
  821.         if(colItem)
  822.         {
  823.           root = xmlDoc.createElement("Element");
  824.           num = " " + String(i);
  825.         }
  826.         else
  827.         {
  828.           root = xmlDoc.createElement("Item");
  829.         }
  830.  
  831.         this._xmlSetAttribute(xmlDoc, root, "name", "Memory Bank" + num);
  832.         if(colItem)
  833.         {
  834.           colItem.appendChild(root);
  835.         }
  836.         else
  837.         {
  838.           xmlDoc.appendChild(root);
  839.         }
  840.  
  841.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "BankLabel", Obj.BankLabel, "name", "Bank label");
  842.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Capacity", Obj.Capacity, "name", "Capacity, bytes");
  843.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "FormFactor", this._translate_memory_form_factor(Obj.FormFactor), "name", "Form factor");
  844.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "HotSwappable", Obj.HotSwappable, "name", "Is hot-swappable?");
  845.         this._xmlCreateChildTextNode(xmlDoc, root, "Manufacturer", Obj.Manufacturer);
  846.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MemoryType", this._translate_memory_type(Obj.MemoryType), "name", "Memory type");
  847.         this._xmlCreateChildTextNode(xmlDoc, root, "Model", Obj.Model);
  848.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  849.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SerialNumber", Obj.SerialNumber, "name", "Serial number");
  850.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Speed", Obj.Speed, "name", "Speed, MHz");
  851.  
  852.         i++;
  853.       }
  854.     }
  855.  
  856.     return xmlDoc;
  857.   }
  858.  
  859.   this._collectPortConnectorsInfo = function()
  860.   {
  861.     var fc = new Enumerator(this._ExecQuery("Win32_PortConnector"));
  862.  
  863.     var xmlDoc = null, colItem = null, numItems = 0;
  864.  
  865.     for (; !fc.atEnd(); fc.moveNext())
  866.       numItems++;
  867.  
  868.     if(numItems > 0)
  869.     {
  870.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  871.  
  872.       if(numItems > 1)
  873.       {
  874.         colItem = xmlDoc.createElement("Item");
  875.         xmlDoc.appendChild(colItem);
  876.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Port Connectors");
  877.       }
  878.  
  879.       var i = 1;
  880.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  881.       {
  882.         var Obj = fc.item();
  883.  
  884.         var root, num = "";
  885.         if(colItem)
  886.         {
  887.           root = xmlDoc.createElement("Element");
  888.           num = " " + String(i);
  889.         }
  890.         else
  891.         {
  892.           root = xmlDoc.createElement("Item");
  893.         }
  894.  
  895.         this._xmlSetAttribute(xmlDoc, root, "name", "Port Connector" + num);
  896.         if(colItem)
  897.         {
  898.           colItem.appendChild(root);
  899.         }
  900.         else
  901.         {
  902.           xmlDoc.appendChild(root);
  903.         }
  904.  
  905.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "InternalReferenceDesignator", Obj.InternalReferenceDesignator, "name", "Internal name");
  906.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  907.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PoweredOn", String(Obj.PoweredOn), "name", "Is powered on?");
  908.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  909.  
  910.         i++;
  911.       }
  912.     }
  913.  
  914.     return xmlDoc;
  915.   }
  916.  
  917.   this._collectUsbControllerInfo = function()
  918.   {
  919.     var fc = new Enumerator(this._ExecQuery("Win32_USBController"));
  920.  
  921.     var xmlDoc = null, colItem = null, numItems = 0;
  922.  
  923.     for (; !fc.atEnd(); fc.moveNext())
  924.       numItems++;
  925.  
  926.     if(numItems > 0)
  927.     {
  928.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  929.  
  930.       if(numItems > 1)
  931.       {
  932.         colItem = xmlDoc.createElement("Item");
  933.         xmlDoc.appendChild(colItem);
  934.         this._xmlSetAttribute(xmlDoc, colItem, "name", "USB Conrollers");
  935.       }
  936.  
  937.       var i = 1;
  938.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  939.       {
  940.         var Obj = fc.item();
  941.  
  942.         var root, num = "";
  943.         if(colItem)
  944.         {
  945.           root = xmlDoc.createElement("Element");
  946.           num = " " + String(i);
  947.         }
  948.         else
  949.         {
  950.           root = xmlDoc.createElement("Item");
  951.         }
  952.  
  953.         this._xmlSetAttribute(xmlDoc, root, "name", "USB Controller" + num);
  954.         if(colItem)
  955.         {
  956.           colItem.appendChild(root);
  957.         }
  958.         else
  959.         {
  960.           xmlDoc.appendChild(root);
  961.         }
  962.  
  963.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  964.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  965.         this._xmlCreateChildTextNode(xmlDoc, root, "Manufacturer", Obj.Manufacturer);
  966.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  967.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  968.  
  969.         i++;
  970.       }
  971.     }
  972.  
  973.     return xmlDoc;
  974.   }
  975.  
  976.   this._collectIdeControllerInfo = function()
  977.   {
  978.     var fc = new Enumerator(this._ExecQuery("Win32_IDEController"));
  979.  
  980.     var xmlDoc = null, colItem = null, numItems = 0;
  981.  
  982.     for (; !fc.atEnd(); fc.moveNext())
  983.       numItems++;
  984.  
  985.     if(numItems > 0)
  986.     {
  987.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  988.  
  989.       if(numItems > 1)
  990.       {
  991.         colItem = xmlDoc.createElement("Item");
  992.         xmlDoc.appendChild(colItem);
  993.         this._xmlSetAttribute(xmlDoc, colItem, "name", "IDE Controllers");
  994.       }
  995.  
  996.       var i = 1;
  997.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  998.       {
  999.         var Obj = fc.item();
  1000.  
  1001.         var root, num = "";
  1002.         if(colItem)
  1003.         {
  1004.           root = xmlDoc.createElement("Element");
  1005.           num = " " + String(i);
  1006.         }
  1007.         else
  1008.         {
  1009.           root = xmlDoc.createElement("Item");
  1010.         }
  1011.  
  1012.         this._xmlSetAttribute(xmlDoc, root, "name", "IDE Controller" + num);
  1013.         if(colItem)
  1014.         {
  1015.           colItem.appendChild(root);
  1016.         }
  1017.         else
  1018.         {
  1019.           xmlDoc.appendChild(root);
  1020.         }
  1021.  
  1022.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  1023.         this._xmlCreateChildTextNode(xmlDoc, root, "Caption", Obj.Caption);
  1024.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  1025.         this._xmlCreateChildTextNode(xmlDoc, root, "Manufacturer", Obj.Manufacturer);
  1026.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MaxNumberControlled", Obj.MaxNumberControlled, "name", "Maximum number of directly addressable devices supported");
  1027.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  1028.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ProtocolSupported", this._translate_protocol_supported(Obj.ProtocolSupported), "name", "Protocol supported");
  1029.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  1030.  
  1031.         i++;
  1032.       }
  1033.     }
  1034.  
  1035.     return xmlDoc;
  1036.   }
  1037.  
  1038.   this._collectScsiControllerInfo = function()
  1039.   {
  1040.     var fc = new Enumerator(this._ExecQuery("Win32_SCSIController"));
  1041.  
  1042.     var xmlDoc = null, colItem = null, numItems = 0;
  1043.  
  1044.     for (; !fc.atEnd(); fc.moveNext())
  1045.       numItems++;
  1046.  
  1047.     if(numItems > 0)
  1048.     {
  1049.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  1050.  
  1051.       if(numItems > 1)
  1052.       {
  1053.         colItem = xmlDoc.createElement("Item");
  1054.         xmlDoc.appendChild(colItem);
  1055.         this._xmlSetAttribute(xmlDoc, colItem, "name", "SCSI Controllers");
  1056.       }
  1057.  
  1058.       var i = 1;
  1059.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  1060.       {
  1061.         var Obj = fc.item();
  1062.  
  1063.         var root, num = "";
  1064.         if(colItem)
  1065.         {
  1066.           root = xmlDoc.createElement("Element");
  1067.           num = " " + String(i);
  1068.         }
  1069.         else
  1070.         {
  1071.           root = xmlDoc.createElement("Item");
  1072.         }
  1073.  
  1074.         this._xmlSetAttribute(xmlDoc, root, "name", "SCSI Controller" + num);
  1075.         if(colItem)
  1076.         {
  1077.           colItem.appendChild(root);
  1078.         }
  1079.         else
  1080.         {
  1081.           xmlDoc.appendChild(root);
  1082.         }
  1083.  
  1084.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  1085.         this._xmlCreateChildTextNode(xmlDoc, root, "Caption", Obj.Caption);
  1086.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  1087.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DriverName", Obj.DriverName, "name", "Driver name");
  1088.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "HardwareVersion", Obj.HardwareVersion, "name", "Hardware version");
  1089.         this._xmlCreateChildTextNode(xmlDoc, root, "Manufacturer", Obj.Manufacturer);
  1090.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MaxTransferRate", Obj.MaxTransferRate, "name", "Maximum transfer rate, bits per second");
  1091.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  1092.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ProtectionManagement", this._translate_scsi_protection_management(Obj.ProtectionManagement), "name", "Protecton management");
  1093.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ProtocolSupported", this._translate_protocol_supported(Obj.ProtocolSupported), "name", "Protocol supported");
  1094.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  1095.  
  1096.         i++;
  1097.       }
  1098.     }
  1099.  
  1100.     return xmlDoc;
  1101.   }
  1102.  
  1103.   this._collectSerialPortInfo = function()
  1104.   {
  1105.     var fc = new Enumerator(this._ExecQuery("Win32_SerialPort"));
  1106.  
  1107.     var xmlDoc = null, colItem = null, numItems = 0;
  1108.  
  1109.     for (; !fc.atEnd(); fc.moveNext())
  1110.       numItems++;
  1111.  
  1112.     if(numItems > 0)
  1113.     {
  1114.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  1115.  
  1116.       if(numItems > 1)
  1117.       {
  1118.         colItem = xmlDoc.createElement("Item");
  1119.         xmlDoc.appendChild(colItem);
  1120.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Serial Ports");
  1121.       }
  1122.  
  1123.       var i = 1;
  1124.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  1125.       {
  1126.         var Obj = fc.item();
  1127.  
  1128.         var root, num = "";
  1129.         if(colItem)
  1130.         {
  1131.           root = xmlDoc.createElement("Element");
  1132.           num = " " + String(i);
  1133.         }
  1134.         else
  1135.         {
  1136.           root = xmlDoc.createElement("Item");
  1137.         }
  1138.  
  1139.         this._xmlSetAttribute(xmlDoc, root, "name", "Serial Port" + num);
  1140.         if(colItem)
  1141.         {
  1142.           colItem.appendChild(root);
  1143.         }
  1144.         else
  1145.         {
  1146.           xmlDoc.appendChild(root);
  1147.         }
  1148.  
  1149.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  1150.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  1151.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MaxBaudRate", Obj.MaxBaudRate, "name", "Maximum baud rate, bits per second");
  1152.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  1153.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ProtocolSupported", this._translate_protocol_supported(Obj.ProtocolSupported), "name", "Protocol supported");
  1154.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ProviderType", Obj.ProviderType, "name", "Provider type");
  1155.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  1156.  
  1157.         i++;
  1158.       }
  1159.     }
  1160.  
  1161.     return xmlDoc;
  1162.   }
  1163.  
  1164.   this._collectParallelPortInfo = function()
  1165.   {
  1166.     var fc = new Enumerator(this._ExecQuery("Win32_ParallelPort"));
  1167.  
  1168.     var xmlDoc = null, colItem = null, numItems = 0;
  1169.  
  1170.     for (; !fc.atEnd(); fc.moveNext())
  1171.       numItems++;
  1172.  
  1173.     if(numItems > 0)
  1174.     {
  1175.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  1176.  
  1177.       if(numItems > 1)
  1178.       {
  1179.         colItem = xmlDoc.createElement("Item");
  1180.         xmlDoc.appendChild(colItem);
  1181.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Parallel Ports");
  1182.       }
  1183.  
  1184.       var i = 1;
  1185.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  1186.       {
  1187.         var Obj = fc.item();
  1188.  
  1189.         var root, num = "";
  1190.         if(colItem)
  1191.         {
  1192.           root = xmlDoc.createElement("Element");
  1193.           num = " " + String(i);
  1194.         }
  1195.         else
  1196.         {
  1197.           root = xmlDoc.createElement("Item");
  1198.         }
  1199.  
  1200.         this._xmlSetAttribute(xmlDoc, root, "name", "Parallel Port" + num);
  1201.         if(colItem)
  1202.         {
  1203.           colItem.appendChild(root);
  1204.         }
  1205.         else
  1206.         {
  1207.           xmlDoc.appendChild(root);
  1208.         }
  1209.  
  1210.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  1211.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  1212.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  1213.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  1214.  
  1215.         i++;
  1216.       }
  1217.     }
  1218.  
  1219.     return xmlDoc;
  1220.   }
  1221.  
  1222.   this._collectIrDeviceInfo = function()
  1223.   {
  1224.     var fc = new Enumerator(this._ExecQuery("Win32_InfraredDevice"));
  1225.  
  1226.     var xmlDoc = null, colItem = null, numItems = 0;
  1227.  
  1228.     for (; !fc.atEnd(); fc.moveNext())
  1229.       numItems++;
  1230.  
  1231.     if(numItems > 0)
  1232.     {
  1233.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  1234.  
  1235.       if(numItems > 1)
  1236.       {
  1237.         colItem = xmlDoc.createElement("Item");
  1238.         xmlDoc.appendChild(colItem);
  1239.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Infrared Devices");
  1240.       }
  1241.  
  1242.       var i = 1;
  1243.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  1244.       {
  1245.         var Obj = fc.item();
  1246.  
  1247.         var root, num = "";
  1248.         if(colItem)
  1249.         {
  1250.           root = xmlDoc.createElement("Element");
  1251.           num = " " + String(i);
  1252.         }
  1253.         else
  1254.         {
  1255.           root = xmlDoc.createElement("Item");
  1256.         }
  1257.  
  1258.         this._xmlSetAttribute(xmlDoc, root, "name", "Infrared Device" + num);
  1259.         if(colItem)
  1260.         {
  1261.           colItem.appendChild(root);
  1262.         }
  1263.         else
  1264.         {
  1265.           xmlDoc.appendChild(root);
  1266.         }
  1267.  
  1268.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  1269.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  1270.         this._xmlCreateChildTextNode(xmlDoc, root, "Manufacturer", Obj.Manufacturer);
  1271.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  1272.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  1273.  
  1274.         i++;
  1275.       }
  1276.     }
  1277.  
  1278.     return xmlDoc;
  1279.   }
  1280.  
  1281.   this._collectPcmciaControllerInfo = function()
  1282.   {
  1283.     var fc = new Enumerator(this._ExecQuery("Win32_PCMCIAController"));
  1284.  
  1285.     var xmlDoc = null, colItem = null, numItems = 0;
  1286.  
  1287.     for (; !fc.atEnd(); fc.moveNext())
  1288.       numItems++;
  1289.  
  1290.     if(numItems > 0)
  1291.     {
  1292.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  1293.  
  1294.       if(numItems > 1)
  1295.       {
  1296.         colItem = xmlDoc.createElement("Item");
  1297.         xmlDoc.appendChild(colItem);
  1298.         this._xmlSetAttribute(xmlDoc, colItem, "name", "PCMCIA Controllers");
  1299.       }
  1300.  
  1301.       var i = 1;
  1302.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  1303.       {
  1304.         var Obj = fc.item();
  1305.  
  1306.         var root, num = "";
  1307.         if(colItem)
  1308.         {
  1309.           root = xmlDoc.createElement("Element");
  1310.           num = " " + String(i);
  1311.         }
  1312.         else
  1313.         {
  1314.           root = xmlDoc.createElement("Item");
  1315.         }
  1316.  
  1317.         this._xmlSetAttribute(xmlDoc, root, "name", "PCMCIA Controller" + num);
  1318.         if(colItem)
  1319.         {
  1320.           colItem.appendChild(root);
  1321.         }
  1322.         else
  1323.         {
  1324.           xmlDoc.appendChild(root);
  1325.         }
  1326.  
  1327.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  1328.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  1329.         this._xmlCreateChildTextNode(xmlDoc, root, "Manufacturer", Obj.Manufacturer);
  1330.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  1331.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  1332.  
  1333.         i++;
  1334.       }
  1335.     }
  1336.  
  1337.     return xmlDoc;
  1338.   }
  1339.  
  1340.   this._collectNetworkAdapterInfo = function()
  1341.   {
  1342.     var fc = new Enumerator(this._ExecQuery("Win32_NetworkAdapter"));
  1343.  
  1344.     var xmlDoc = null, colItem = null, numItems = 0;
  1345.  
  1346.     for (; !fc.atEnd(); fc.moveNext())
  1347.       numItems++;
  1348.  
  1349.     if(numItems > 0)
  1350.     {
  1351.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  1352.  
  1353.       if(numItems > 1)
  1354.       {
  1355.         colItem = xmlDoc.createElement("Item");
  1356.         xmlDoc.appendChild(colItem);
  1357.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Network Adapters");
  1358.       }
  1359.  
  1360.       var i = 1;
  1361.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  1362.       {
  1363.         var Obj = fc.item();
  1364.  
  1365.         var root, num = "";
  1366.         if(colItem)
  1367.         {
  1368.           root = xmlDoc.createElement("Element");
  1369.           num = " " + String(i);
  1370.         }
  1371.         else
  1372.         {
  1373.           root = xmlDoc.createElement("Item");
  1374.         }
  1375.  
  1376.         this._xmlSetAttribute(xmlDoc, root, "name", "Network Adapter" + num);
  1377.         if(colItem)
  1378.         {
  1379.           colItem.appendChild(root);
  1380.         }
  1381.         else
  1382.         {
  1383.           xmlDoc.appendChild(root);
  1384.         }
  1385.  
  1386.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "AdapterType", Obj.AdapterType, "name", "Adapter type");
  1387.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  1388.         this._xmlCreateChildTextNode(xmlDoc, root, "Caption", Obj.Caption);
  1389.  
  1390.         var nc = new Enumerator(this._ExecQueryWithWhereClause("Win32_NetworkAdapterConfiguration", "Index=" + Obj.Index));
  1391.         for (; !nc.atEnd(); nc.moveNext())
  1392.         {
  1393.           var conf_obj = nc.item();
  1394.           var conf_node = this._xmlCreateChildNodeWithAttribute(xmlDoc, root, "Configuration", "name", "Adapter configuration:");
  1395.  
  1396.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, conf_node, "DatabasePath", conf_obj.DatabasePath, "name", "Path to standard Internet database files");
  1397.  
  1398.           if(conf_obj.DefaultIPGateway != null)
  1399.           {
  1400.             var gate_node = this._xmlCreateChildNodeWithAttribute(xmlDoc, conf_node, "DefaultIPGateways", "name", "Default IP gateways:");
  1401.  
  1402.             var i_count = 1;
  1403.             var dips = conf_obj.DefaultIPGateway.toArray();
  1404.             var dipc = new Enumerator(dips);
  1405.  
  1406.             for (; !dipc.atEnd(); dipc.moveNext())
  1407.             {
  1408.               var dip_obj = dipc.item();
  1409.               this._xmlCreateChildTextNode(xmlDoc, gate_node, "DefaultIPGateway_" + String(i_count), String(dip_obj));
  1410.  
  1411.               i_count++;
  1412.             }
  1413.           }
  1414.  
  1415.           this._xmlCreateChildTextNode(xmlDoc, conf_node, "Description", conf_obj.Description);
  1416.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, conf_node, "DHCPEnabled", conf_obj.DHCPEnabled, "name", "DHCP enabled");
  1417.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, conf_node, "DHCPLeaseExpires", this._translate_date(conf_obj.DHCPLeaseExpires), "name", "DHCP lease expires");
  1418.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, conf_node, "DHCPLeaseObtained", this._translate_date(conf_obj.DHCPLeaseObtained), "name", "DHCP lease obtained");
  1419.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, conf_node, "DHCPServer", conf_obj.DHCPServer, "name", "DHCP server");
  1420.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, conf_node, "DNSDomain", conf_obj.DNSDomain, "name", "DNS domain");
  1421.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, conf_node, "DNSEnabledForWINSResolution", conf_obj.DNSEnabledForWINSResolution, "name", "DNS enabled for WINS resolution");
  1422.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, conf_node, "DNSHostName", conf_obj.DNSHostName, "name", "DNS host name");
  1423.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, conf_node, "IPEnabled", conf_obj.IPEnabled, "name", "IP enabled");
  1424.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, conf_node, "IPFilterSecurityEnabled", conf_obj.IPFilterSecurityEnabled, "name", "IP packet filtering enabled");
  1425.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, conf_node, "IPPortSecurityEnabled", conf_obj.IPPortSecurityEnabled, "name", "IP port security enabled");
  1426.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, conf_node, "IPUseZeroBroadcast", conf_obj.IPUseZeroBroadcast, "name", "IP uses zero broadcast");
  1427.  
  1428.           if(conf_obj.IPXEnabled == true)
  1429.             this._xmlCreateChildTextNodeWithAttribute(xmlDoc, conf_node, "IPXAddress", conf_obj.IPXAddress, "name", "IPX address");
  1430.  
  1431.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, conf_node, "IPXEnabled", conf_obj.IPXEnabled, "name", "IPX enabled");
  1432.  
  1433. /*
  1434.           if((Obj.ServiceName == "") | (Obj.ServiceName == undefined) | (Obj.ServiceName == "null"))
  1435.             this._xmlCreateChildTextNodeWithAttribute(xmlDoc, conf_node, "ServiceName", conf_obj.ServiceName, "name", "Service name of the network adapter");
  1436. */
  1437.  
  1438.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, conf_node, "TcpipNetbiosOptions", conf_obj.TcpipNetbiosOptions, "name", "NetBIOS over TCP/IP");
  1439.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, conf_node, "TcpNumConnections", conf_obj.TcpNumConnections, "name", "Maximum Number of connections");
  1440.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, conf_node, "WINSEnableLMHostsLookup", conf_obj.WINSEnableLMHostsLookup, "name", "Local lookup files are used for WINS resoluton");
  1441.  
  1442.           if(conf_obj.WINSEnableLMHostsLookup == true)
  1443.             this._xmlCreateChildTextNodeWithAttribute(xmlDoc, conf_node, "WINSHostLookupFile", conf_obj.WINSHostLookupFile, "name", "Lookup file path");
  1444.  
  1445.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, conf_node, "WINSPrimaryServer", conf_obj.WINSPrimaryServer, "name", "WINS primary server");
  1446.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, conf_node, "WINSSecondaryServer", conf_obj.WINSSecondaryServer, "name", "WINS secondary server");
  1447.  
  1448.           if(conf_obj.IPAddress != null)
  1449.           {
  1450.             var addr_node = this._xmlCreateChildNodeWithAttribute(xmlDoc, conf_node, "IPAddresses", "name", "IP addresses:");
  1451.  
  1452.             var i_count = 1;
  1453.             var ips = conf_obj.IPAddress.toArray();
  1454.             var ipc = new Enumerator(ips);
  1455.  
  1456.             for (; !ipc.atEnd(); ipc.moveNext())
  1457.             {
  1458.               var ip_obj = ipc.item();
  1459.               this._xmlCreateChildTextNodeWithAttribute(xmlDoc, addr_node, "Ip" + String(i_count), String(ip_obj), "name", "IP Address " + String(i_count));
  1460.  
  1461.               i_count++;
  1462.             }
  1463.           }
  1464.  
  1465.           if(conf_obj.IPSubnet != null)
  1466.           {
  1467.             var subnet_node = this._xmlCreateChildNodeWithAttribute(xmlDoc, conf_node, "IPSubnetMasks", "name", "IP subnet masks:");
  1468.  
  1469.             var i_count = 1;
  1470.             var ipss = conf_obj.IPSubnet.toArray();
  1471.             var ipsc = new Enumerator(ipss);
  1472.  
  1473.             for (; !ipsc.atEnd(); ipsc.moveNext())
  1474.             {
  1475.               var ips_obj = ipsc.item();
  1476.               this._xmlCreateChildTextNodeWithAttribute(xmlDoc, subnet_node , "Mask" + String(i_count), String(ips_obj), "name", "Subnet mask " + String(i_count));
  1477.  
  1478.               i_count++;
  1479.             }
  1480.           }
  1481.         }
  1482.  
  1483.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  1484.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MACAddress", Obj.MACAddress, "name", "MAC address");
  1485.         this._xmlCreateChildTextNode(xmlDoc, root, "Manufacturer", Obj.Manufacturer);
  1486.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MaxSpeed", Obj.MaxSpeed, "name", "Maximum transfer speed, bits per second");
  1487.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  1488.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "NetConnectionID", Obj.NetConnectionID, "name", "Name of network connection");
  1489.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "NetConnectionStatus", this._translate_net_connection_status(Obj.NetConnectionStatus), "name", "Status of the network connection");
  1490.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ServiceName", Obj.ServiceName, "name", "Service name of the network adapter");
  1491.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Speed", Obj.Speed, "name", "Current transfer speed, bits per second");
  1492.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  1493.  
  1494.         i++;
  1495.       }
  1496.     }
  1497.  
  1498.     return xmlDoc;
  1499.   }
  1500.  
  1501.   this._collectDisplayInfo = function()
  1502.   {
  1503.     var fc = new Enumerator(this._ExecQuery("Win32_DesktopMonitor"));
  1504.  
  1505.     var xmlDoc = null, colItem = null, numItems = 0;
  1506.  
  1507.     for (; !fc.atEnd(); fc.moveNext())
  1508.       numItems++;
  1509.  
  1510.     if(numItems > 0)
  1511.     {
  1512.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  1513.  
  1514.       if(numItems > 1)
  1515.       {
  1516.         colItem = xmlDoc.createElement("Item");
  1517.         xmlDoc.appendChild(colItem);
  1518.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Desktop Monitors");
  1519.       }
  1520.  
  1521.       var i = 1;
  1522.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  1523.       {
  1524.         var Obj = fc.item();
  1525.  
  1526.         var root, num = "";
  1527.         if(colItem)
  1528.         {
  1529.           root = xmlDoc.createElement("Element");
  1530.           num = " " + String(i);
  1531.         }
  1532.         else
  1533.         {
  1534.           root = xmlDoc.createElement("Item");
  1535.         }
  1536.  
  1537.         this._xmlSetAttribute(xmlDoc, root, "name", "Desktop Monitor" + num);
  1538.         if(colItem)
  1539.         {
  1540.           colItem.appendChild(root);
  1541.         }
  1542.         else
  1543.         {
  1544.           xmlDoc.appendChild(root);
  1545.         }
  1546.  
  1547.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  1548.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  1549.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DisplayType", Obj.DisplayType, "name", "Display type");
  1550.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MonitorManufacturer", Obj.MonitorManufacturer, "name", "Manufacturer");
  1551.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MonitorType", Obj.MonitorType, "name", "Monitor type");
  1552.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  1553.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PixelsPerXLogicalInch", Obj.PixelsPerXLogicalInch, "name", "Resolution along the X axis, pixels per inch");
  1554.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PixelsPerYLogicalInch", Obj.PixelsPerYLogicalInch, "name", "Resolution along the Y axis, pixels per inch");
  1555.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ScreenHeight", Obj.ScreenHeight, "name", "Logical height of the display, pixels");
  1556.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ScreenWidth", Obj.ScreenWidth, "name", "Logical width of the display, pixels");
  1557.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  1558.  
  1559.         i++;
  1560.       }
  1561.     }
  1562.  
  1563.     return xmlDoc;
  1564.   }
  1565.  
  1566.   this._collectVideoAdapterInfo = function()
  1567.   {
  1568.     var fc = new Enumerator(this._ExecQuery("Win32_VideoController"));
  1569.  
  1570.     var xmlDoc = null, colItem = null, numItems = 0;
  1571.  
  1572.     for (; !fc.atEnd(); fc.moveNext())
  1573.       numItems++;
  1574.  
  1575.     if(numItems > 0)
  1576.     {
  1577.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  1578.  
  1579.       if(numItems > 1)
  1580.       {
  1581.         colItem = xmlDoc.createElement("Item");
  1582.         xmlDoc.appendChild(colItem);
  1583.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Video Adapters");
  1584.       }
  1585.  
  1586.       var i = 1;
  1587.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  1588.       {
  1589.         var Obj = fc.item();
  1590.  
  1591.         var root, num = "";
  1592.         if(colItem)
  1593.         {
  1594.           root = xmlDoc.createElement("Element");
  1595.           num = " " + String(i);
  1596.         }
  1597.         else
  1598.         {
  1599.           root = xmlDoc.createElement("Item");
  1600.         }
  1601.  
  1602.         this._xmlSetAttribute(xmlDoc, root, "name", "Video Adapter" + num);
  1603.         if(colItem)
  1604.         {
  1605.           colItem.appendChild(root);
  1606.         }
  1607.         else
  1608.         {
  1609.           xmlDoc.appendChild(root);
  1610.         }
  1611.  
  1612.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "AdapterDACType", Obj.AdapterDACType, "name", "Adapter DAC type");
  1613.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "AdapterRAM", Obj.AdapterRAM, "name", "Ammount of onboard RAM, bytes");
  1614.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  1615.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "CurrentRefreshRate", Obj.CurrentRefreshRate, "name", "Current refresh rate, Hz");
  1616.         this._xmlCreateChildTextNode(xmlDoc, root, "Description", Obj.Description);
  1617.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  1618.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DriverDate", this._translate_date(Obj.DriverDate), "name", "Driver date");
  1619.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DriverVersion", Obj.DriverVersion, "name", "Driver version");
  1620.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MaxRefreshRate", Obj.MaxRefreshRate, "name", "Maximum refresh rate, Hz");
  1621.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MinRefreshRate", Obj.MinRefreshRate, "name", "Minimum refresh rate, Hz");
  1622.         this._xmlCreateChildTextNode(xmlDoc, root, "Monochrome", Obj.Monochrome);
  1623.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  1624.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ProtocolSupported", this._translate_protocol_supported(Obj.ProtocolSupported), "name", "Protocol supported");
  1625.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  1626.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "VideoArchitecture", this._translate_video_architecture(Obj.VideoArchitecture), "name", "Video architecture");
  1627.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "VideoMemoryType", this._translate_video_memory_type(Obj.VideoMemoryType), "name", "Video memory type");
  1628.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "VideoModeDescription", Obj.VideoModeDescription, "name", "Video mode description");
  1629.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "VideoProcessor", Obj.VideoProcessor, "name", "Video processor");
  1630.  
  1631.         i++;
  1632.       }
  1633.     }
  1634.  
  1635.     return xmlDoc;
  1636.   }
  1637.  
  1638.   this._collectCDROMInfo = function()
  1639.   {
  1640.     var fc = new Enumerator(this._ExecQuery("Win32_CDROMDrive"));
  1641.  
  1642.     var xmlDoc = null, colItem = null, numItems = 0;
  1643.  
  1644.     for (; !fc.atEnd(); fc.moveNext())
  1645.       numItems++;
  1646.  
  1647.     if(numItems > 0)
  1648.     {
  1649.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  1650.  
  1651.       if(numItems > 1)
  1652.       {
  1653.         colItem = xmlDoc.createElement("Item");
  1654.         xmlDoc.appendChild(colItem);
  1655.         this._xmlSetAttribute(xmlDoc, colItem, "name", "CD-ROM Drives");
  1656.       }
  1657.  
  1658.       var i = 1;
  1659.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  1660.       {
  1661.         var Obj = fc.item();
  1662.  
  1663.         var root, num = "";
  1664.         if(colItem)
  1665.         {
  1666.           root = xmlDoc.createElement("Element");
  1667.           num = " " + String(i);
  1668.         }
  1669.         else
  1670.         {
  1671.           root = xmlDoc.createElement("Item");
  1672.         }
  1673.  
  1674.         this._xmlSetAttribute(xmlDoc, root, "name", "CD-ROM Drive" + num);
  1675.         if(colItem)
  1676.         {
  1677.           colItem.appendChild(root);
  1678.         }
  1679.         else
  1680.         {
  1681.           xmlDoc.appendChild(root);
  1682.         }
  1683.  
  1684.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  1685.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  1686.         this._xmlCreateChildTextNode(xmlDoc, root, "Drive", Obj.Drive);
  1687.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DriveIntegrity", Obj.DriveIntegrity, "name", "Files can be accurately read from the CD device");
  1688.         this._xmlCreateChildTextNode(xmlDoc, root, "Manufacturer", Obj.Manufacturer);
  1689.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MaxMediaSize", Obj.MaxMediaSize, "name", "Maximum media size supported, kilobytes");
  1690.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MediaType", Obj.MediaType, "name", "Media type");
  1691.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  1692.         this._xmlCreateChildTextNode(xmlDoc, root, "Size", Obj.Size);
  1693.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  1694.  
  1695.         i++;
  1696.       }
  1697.     }
  1698.  
  1699.     return xmlDoc;
  1700.   }
  1701.  
  1702.   this._collectDiskDrivesInfo = function()
  1703.   {
  1704.     var fc = new Enumerator(this._ExecQuery("Win32_DiskDrive"));
  1705.  
  1706.     var xmlDoc = null, colItem = null, numItems = 0;
  1707.  
  1708.     for (; !fc.atEnd(); fc.moveNext())
  1709.       numItems++;
  1710.  
  1711.     if(numItems > 0)
  1712.     {
  1713.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  1714.  
  1715.       if(numItems > 1)
  1716.       {
  1717.         colItem = xmlDoc.createElement("Item");
  1718.         xmlDoc.appendChild(colItem);
  1719.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Disk Drives");
  1720.       }
  1721.  
  1722.       var i = 1;
  1723.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  1724.       {
  1725.         var Obj = fc.item();
  1726.  
  1727.         var root, num = "";
  1728.         if(colItem)
  1729.         {
  1730.           root = xmlDoc.createElement("Element");
  1731.           num = " " + String(i);
  1732.         }
  1733.         else
  1734.         {
  1735.           root = xmlDoc.createElement("Item");
  1736.         }
  1737.  
  1738.         this._xmlSetAttribute(xmlDoc, root, "name", "Disk Drive" + num);
  1739.         if(colItem)
  1740.         {
  1741.           colItem.appendChild(root);
  1742.         }
  1743.         else
  1744.         {
  1745.           xmlDoc.appendChild(root);
  1746.         }
  1747.  
  1748.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  1749.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "BytesPerSector", Obj.BytesPerSector, "name", "Bytes per sector");
  1750.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  1751.         this._xmlCreateChildTextNode(xmlDoc, root, "Index", Obj.Index);
  1752.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "InterfaceType", Obj.InterfaceType, "name", "Interface type");
  1753.         this._xmlCreateChildTextNode(xmlDoc, root, "Manufacturer", Obj.Manufacturer);
  1754.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MaxMediaSize", Obj.MaxMediaSize, "name", "Maximum media size supported, kilobytes");
  1755.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MediaType", Obj.MediaType, "name", "Media type");
  1756.         this._xmlCreateChildTextNode(xmlDoc, root, "Model", Obj.Model);
  1757.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  1758.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Size", Obj.Size, "name", "Capacity, bytes");
  1759.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  1760.  
  1761.         i++;
  1762.       }
  1763.     }
  1764.  
  1765.     return xmlDoc;
  1766.   }
  1767.  
  1768.   this._collectFloppyInfo = function()
  1769.   {
  1770.     var fc = new Enumerator(this._ExecQuery("Win32_FloppyDrive"));
  1771.  
  1772.     var xmlDoc = null, colItem = null, numItems = 0;
  1773.  
  1774.     for (; !fc.atEnd(); fc.moveNext())
  1775.       numItems++;
  1776.  
  1777.     if(numItems > 0)
  1778.     {
  1779.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  1780.  
  1781.       if(numItems > 1)
  1782.       {
  1783.         colItem = xmlDoc.createElement("Item");
  1784.         xmlDoc.appendChild(colItem);
  1785.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Floppy Disk Drives");
  1786.       }
  1787.  
  1788.       var i = 1;
  1789.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  1790.       {
  1791.         var Obj = fc.item();
  1792.  
  1793.         var root, num = "";
  1794.         if(colItem)
  1795.         {
  1796.           root = xmlDoc.createElement("Element");
  1797.           num = " " + String(i);
  1798.         }
  1799.         else
  1800.         {
  1801.           root = xmlDoc.createElement("Item");
  1802.         }
  1803.  
  1804.         this._xmlSetAttribute(xmlDoc, root, "name", "Floppy Disk Drive" + num);
  1805.         if(colItem)
  1806.         {
  1807.           colItem.appendChild(root);
  1808.         }
  1809.         else
  1810.         {
  1811.           xmlDoc.appendChild(root);
  1812.         }
  1813.  
  1814.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  1815.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  1816.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  1817.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  1818.  
  1819.         i++;
  1820.       }
  1821.     }
  1822.  
  1823.     return xmlDoc;
  1824.   }
  1825.  
  1826.   this._collectTapeDriveInfo = function()
  1827.   {
  1828.     var fc = new Enumerator(this._ExecQuery("Win32_TapeDrive"));
  1829.  
  1830.     var xmlDoc = null, colItem = null, numItems = 0;
  1831.  
  1832.     for (; !fc.atEnd(); fc.moveNext())
  1833.       numItems++;
  1834.  
  1835.     if(numItems > 0)
  1836.     {
  1837.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  1838.  
  1839.       if(numItems > 1)
  1840.       {
  1841.         colItem = xmlDoc.createElement("Item");
  1842.         xmlDoc.appendChild(colItem);
  1843.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Tape Drives");
  1844.       }
  1845.  
  1846.       var i = 1;
  1847.       for (fc.moveFirst();!fc.atEnd(); fc.moveNext())
  1848.       {
  1849.         var Obj = fc.item();
  1850.  
  1851.         var root, num = "";
  1852.         if(colItem)
  1853.         {
  1854.           root = xmlDoc.createElement("Element");
  1855.           num = " " + String(i);
  1856.         }
  1857.         else
  1858.         {
  1859.           root = xmlDoc.createElement("Item");
  1860.         }
  1861.  
  1862.         this._xmlSetAttribute(xmlDoc, root, "name", "Tape Drive" + num);
  1863.         if(colItem)
  1864.         {
  1865.           colItem.appendChild(root);
  1866.         }
  1867.         else
  1868.         {
  1869.           xmlDoc.appendChild(root);
  1870.         }
  1871.  
  1872.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  1873.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Compression", this._translate_true_false(Obj.Compression), "name", "Hardware data compression is enabled");
  1874.  
  1875.         if(Obj.Compression == 1)
  1876.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "CompressionMethod", Obj.CompressionMethod, "name", "Algorithm or tool used by the device to support compression");
  1877.  
  1878.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  1879.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ECC", this._translate_true_false(Obj.ECC), "name", "Device supports hardware error correction");
  1880.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ErrorMethodology", Obj.ErrorMethodology, "name", "Type of error detection and correction supported by device");
  1881.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "FeaturesHigh", Obj.FeaturesHigh, "name", "High-order 32 bits of the device features flag");
  1882.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "FeaturesLow", Obj.FeaturesLow, "name", "Low-order 32 bits of the device features flag");
  1883.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Id", Obj.Id, "name", "Identifying name");
  1884.         this._xmlCreateChildTextNode(xmlDoc, root, "Manufacturer", Obj.Manufacturer);
  1885.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MaxMediaSize", Obj.MaxMediaSize, "name", "Maximum size, in kilobytes, of media supported by device");
  1886.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MediaType", Obj.MediaType, "name", "Media type used by (or accessed by) this device");
  1887.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "NumberOfMediaSupported", Obj.NumberOfMediaSupported, "name", "Maximum number of individual media which can be supported or inserted in the media access device");
  1888.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PNPDeviceID", Obj.PNPDeviceID, "name", "Windows Plug and Play device identifier");
  1889.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ReportSetMarks", this._translate_true_false(Obj.ReportSetMarks), "name", "Setmark reporting is enabled");
  1890.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  1891.  
  1892.         if(Obj.Capabilities != null)
  1893.         {
  1894.           var cap_node = this._xmlCreateChildNodeWithAttribute(xmlDoc, root, "Capabilities", "name", "Device capabilities:");
  1895.  
  1896.           var c_count = 1;
  1897.           var cps = Obj.Capabilities.toArray();
  1898.           var cpc = new Enumerator(cps);
  1899.  
  1900.           for (; !cpc.atEnd(); cpc.moveNext())
  1901.           {
  1902.             var cp_obj = cpc.item();
  1903.             this._xmlCreateChildTextNodeWithAttribute(xmlDoc, cap_node, "Cap" + String(c_count), this._translate_conseq_capabilities(cp_obj), "name", "Capability " + String(c_count));
  1904.  
  1905.             c_count++;
  1906.           }
  1907.         }
  1908.  
  1909.         i++;
  1910.       }
  1911.     }
  1912.  
  1913.     return xmlDoc;
  1914.   }
  1915.  
  1916.   this._collectKeyboardInfo = function()
  1917.   {
  1918.     var fc = new Enumerator(this._ExecQuery("Win32_Keyboard"));
  1919.  
  1920.     var xmlDoc = null, colItem = null, numItems = 0;
  1921.  
  1922.     for (; !fc.atEnd(); fc.moveNext())
  1923.       numItems++;
  1924.  
  1925.     if(numItems > 0)
  1926.     {
  1927.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  1928.  
  1929.       if(numItems > 1)
  1930.       {
  1931.         colItem = xmlDoc.createElement("Item");
  1932.         xmlDoc.appendChild(colItem);
  1933.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Keyboards");
  1934.       }
  1935.  
  1936.       var i = 1;
  1937.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  1938.       {
  1939.         var Obj = fc.item();
  1940.  
  1941.         var root, num = "";
  1942.         if(colItem)
  1943.         {
  1944.           root = xmlDoc.createElement("Element");
  1945.           num = " " + String(i);
  1946.         }
  1947.         else
  1948.         {
  1949.           root = xmlDoc.createElement("Item");
  1950.         }
  1951.  
  1952.         this._xmlSetAttribute(xmlDoc, root, "name", "Keyboard" + num);
  1953.         if(colItem)
  1954.         {
  1955.           colItem.appendChild(root);
  1956.         }
  1957.         else
  1958.         {
  1959.           xmlDoc.appendChild(root);
  1960.         }
  1961.  
  1962.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  1963.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  1964.         this._xmlCreateChildTextNode(xmlDoc, root, "Layout", Obj.Layout);
  1965.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  1966.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "NumberOfFunctionKeys", Obj.NumberOfFunctionKeys, "name", "Number of function keys");
  1967.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  1968.  
  1969.         i++;
  1970.       }
  1971.     }
  1972.  
  1973.     return xmlDoc;
  1974.   }
  1975.  
  1976.   this._collectPointingDeviceInfo = function()
  1977.   {
  1978.     var fc = new Enumerator(this._ExecQuery("Win32_PointingDevice"));
  1979.  
  1980.     var xmlDoc = null, colItem = null, numItems = 0;
  1981.  
  1982.     for (; !fc.atEnd(); fc.moveNext())
  1983.       numItems++;
  1984.  
  1985.     if(numItems > 0)
  1986.     {
  1987.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  1988.  
  1989.       if(numItems > 1)
  1990.       {
  1991.         colItem = xmlDoc.createElement("Item");
  1992.         xmlDoc.appendChild(colItem);
  1993.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Pointing Devices");
  1994.       }
  1995.  
  1996.       var i = 1;
  1997.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  1998.       {
  1999.         var Obj = fc.item();
  2000.  
  2001.         var root, num = "";
  2002.         if(colItem)
  2003.         {
  2004.           root = xmlDoc.createElement("Element");
  2005.           num = " " + String(i);
  2006.         }
  2007.         else
  2008.         {
  2009.           root = xmlDoc.createElement("Item");
  2010.         }
  2011.  
  2012.         this._xmlSetAttribute(xmlDoc, root, "name", "Pointing Device" + num);
  2013.         if(colItem)
  2014.         {
  2015.           colItem.appendChild(root);
  2016.         }
  2017.         else
  2018.         {
  2019.           xmlDoc.appendChild(root);
  2020.         }
  2021.  
  2022.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  2023.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  2024.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceInterface", this._translate_mouse_interface(Obj.DeviceInterface), "name", "Device interface");
  2025.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "HardwareType", Obj.HardwareType, "name", "Hardware type");
  2026.         this._xmlCreateChildTextNode(xmlDoc, root, "Manufacturer", Obj.Manufacturer);
  2027.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  2028.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "NumberOfButtons", Obj.NumberOfButtons, "name", "Number of buttons");
  2029.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PointingType", this._translate_mouse_type(Obj.PointingType), "name", "Pointing device type");
  2030.         this._xmlCreateChildTextNode(xmlDoc, root, "Resolution", Obj.Resolution);
  2031.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SampleRate", Obj.SampleRate, "name", "Sampling rate, Hz");
  2032.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  2033.  
  2034.         i++;
  2035.       }
  2036.     }
  2037.  
  2038.     return xmlDoc;
  2039.   }
  2040.  
  2041.   this._collectPrinterInfo = function()
  2042.   {
  2043.     var fc = new Enumerator(this._ExecQuery("Win32_Printer"));
  2044.  
  2045.     var xmlDoc = null, colItem = null, numItems = 0;
  2046.  
  2047.     for (; !fc.atEnd(); fc.moveNext())
  2048.       numItems++;
  2049.  
  2050.     if(numItems > 0)
  2051.     {
  2052.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  2053.  
  2054.       if(numItems > 1)
  2055.       {
  2056.         colItem = xmlDoc.createElement("Item");
  2057.         xmlDoc.appendChild(colItem);
  2058.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Printers");
  2059.       }
  2060.  
  2061.       var i = 1;
  2062.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  2063.       {
  2064.         var Obj = fc.item();
  2065.  
  2066.         var root, num = "";
  2067.         if(colItem)
  2068.         {
  2069.           root = xmlDoc.createElement("Element");
  2070.           num = " " + String(i);
  2071.         }
  2072.         else
  2073.         {
  2074.           root = xmlDoc.createElement("Item");
  2075.         }
  2076.  
  2077.         this._xmlSetAttribute(xmlDoc, root, "name", "Printer" + num);
  2078.         if(colItem)
  2079.         {
  2080.           colItem.appendChild(root);
  2081.         }
  2082.         else
  2083.         {
  2084.           xmlDoc.appendChild(root);
  2085.         }
  2086.  
  2087.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  2088.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  2089.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DriverName", Obj.DriverName, "name", "Driver name");
  2090.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  2091.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Network", Obj.Network, "name", "Is network printer?");
  2092.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PortName", Obj.PortName, "name", "Port that is used to transmit data to a printer");
  2093.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PrinterStatus", this._translate_printer_status(Obj.PrinterStatus), "name", "Status of printer");
  2094.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PrintProcessor", Obj.PrintProcessor, "name", "Name of the print spooler that handles print jobs");
  2095.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ServerName", Obj.ServerName, "name", "Name of the server that controls the printer");
  2096.  
  2097.         if(Obj.Attributes != null)
  2098.         {
  2099.           var attrib_node = this._xmlCreateChildNode(xmlDoc, root, "Attributes");
  2100.  
  2101.           if(Obj.Attributes & 0x1) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, attrib_node, "Attribute1", "true", "name", "Print jobs are buffered and queued");
  2102.           if(Obj.Attributes & 0x2) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, attrib_node, "Attribute2", "true", "name", "Document to be sent directly to the printer");
  2103.           if(Obj.Attributes & 0x4) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, attrib_node, "Attribute3", "true", "name", "Default printer on a computer");
  2104.           if(Obj.Attributes & 0x8) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, attrib_node, "Attribute4", "true", "name", "Available as a shared network resource");
  2105.           if(Obj.Attributes & 0x10) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, attrib_node, "Attribute5", "true", "name", "Attached to a network");
  2106.           if(Obj.Attributes & 0x20) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, attrib_node, "Attribute6", "true", "name", "Hidden from some users on the network");
  2107.           if(Obj.Attributes & 0x40) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, attrib_node, "Attribute7", "true", "name", "Directly connected to a computer");
  2108.           if(Obj.Attributes & 0x80) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, attrib_node, "Attribute8", "true", "name", "Enable the queue on the printer if available");
  2109.           if(Obj.Attributes & 0x100) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, attrib_node, "Attribute9", "true", "name", "Spooler should not delete documents after they are printed");
  2110.           if(Obj.Attributes & 0x200) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, attrib_node, "Attribute10", "true", "name", "Start jobs that are finished spooling first");
  2111.           if(Obj.Attributes & 0x400) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, attrib_node, "Attribute11", "true", "name", "Queue print jobs when a printer is not available");
  2112.           if(Obj.Attributes & 0x800) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, attrib_node, "Attribute12", "true", "name", "Enable bi-directional printing");
  2113.           if(Obj.Attributes & 0x1000) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, attrib_node, "Attribute13", "true", "name", "Allow only raw data type jobs to be spooled");
  2114.           if(Obj.Attributes & 0x2000) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, attrib_node, "Attribute14", "true", "name", "Published in the network directory service");
  2115.         }
  2116.  
  2117.         var cc = new Enumerator(this._ExecQueryWithWhereClause("Win32_PrinterConfiguration", "Name=\"" + Obj.Name + "\""));
  2118.         for (cc.moveFirst(); !cc.atEnd(); cc.moveNext())
  2119.         {
  2120.           var conf_obj = cc.item();
  2121.           var config_node = this._xmlCreateChildNode(xmlDoc, root, "Configuration");
  2122.  
  2123.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, config_node, "Collate", conf_obj.Collate, "name", "Pages that are printed should be collated");
  2124.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, config_node, "Color", this._translate_print_color(conf_obj.Color), "name", "Color mode");
  2125.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, config_node, "DitherType", this._translate_print_dither_type(conf_obj.DitherType), "name", "Dither type of the printer");
  2126.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, config_node, "DriverVersion", conf_obj.DriverVersion, "name", "Version number of the printer driver");
  2127.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, config_node, "Duplex", conf_obj.Duplex, "name", "Printing is done on both sides");
  2128.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, config_node, "HorizontalResolution", conf_obj.HorizontalResolution, "name", "Print resolution along the X axis (width), dots per inch");
  2129.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, config_node, "VerticalResolution", conf_obj.VerticalResolution, "name", "Print resolution along the Y axis (height), dots per inch");
  2130.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, config_node, "ICMIntent", this._translate_print_icm_intent(conf_obj.ICMIntent), "name", "Color matching method");
  2131.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, config_node, "ICMMethod", this._translate_print_icm_method(conf_obj.ICMMethod), "name", "How ICM is handled");
  2132.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, config_node, "MediaType", this._translate_print_media_type(conf_obj.MediaType), "name", "Type of media being printed on");
  2133.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, config_node, "Orientation", this._translate_print_orientation(conf_obj.Orientation), "name", "Printing orientation of the paper");
  2134.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, config_node, "PaperSize", conf_obj.PaperSize, "name", "Size of the paper");
  2135.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, config_node, "Scale", conf_obj.Scale, "name", "Factor by which the printed output is to be scaled, %");
  2136.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, config_node, "TTOption", this._translate_print_true_type_option(conf_obj.TTOption), "name", "How TrueType(r) fonts should be printed");
  2137.         }
  2138.  
  2139.         i++;
  2140.       }
  2141.     }
  2142.  
  2143.     return xmlDoc;
  2144.   }
  2145.  
  2146.   this._collectBatteryInfo = function()
  2147.   {
  2148.     var fc = new Enumerator(this._ExecQuery("Win32_Battery"));
  2149.  
  2150.     var xmlDoc = null, colItem = null, numItems = 0;
  2151.  
  2152.     for (; !fc.atEnd(); fc.moveNext())
  2153.       numItems++;
  2154.  
  2155.     if(numItems > 0)
  2156.     {
  2157.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  2158.  
  2159.       if(numItems > 1)
  2160.       {
  2161.         colItem = xmlDoc.createElement("Item");
  2162.         xmlDoc.appendChild(colItem);
  2163.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Batteries");
  2164.       }
  2165.  
  2166.       var i = 1;
  2167.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  2168.       {
  2169.         var Obj = fc.item();
  2170.  
  2171.         var root, num = "";
  2172.         if(colItem)
  2173.         {
  2174.           root = xmlDoc.createElement("Element");
  2175.           num = " " + String(i);
  2176.         }
  2177.         else
  2178.         {
  2179.           root = xmlDoc.createElement("Item");
  2180.         }
  2181.  
  2182.         this._xmlSetAttribute(xmlDoc, root, "name", "Battery" + num);
  2183.         if(colItem)
  2184.         {
  2185.           colItem.appendChild(root);
  2186.         }
  2187.         else
  2188.         {
  2189.           xmlDoc.appendChild(root);
  2190.         }
  2191.  
  2192.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  2193.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "BatteryRechargeTime", Obj.BatteryRechargeTime, "name", "Battery recharge time");
  2194.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "BatteryStatus", Obj.BatteryStatus, "name", "Status of battery");
  2195.         this._xmlCreateChildTextNode(xmlDoc, root, "Chemistry", Obj.Chemistry);
  2196.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DesignCapacity", Obj.DesignCapacity, "name", "Design capacity");
  2197.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DesignVoltage", Obj.DesignVoltage, "name", "Design voltage");
  2198.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  2199.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "EstimatedChargeRemaining", Obj.EstimatedChargeRemaining, "name", "Estimated time until battery is fully recharged");
  2200.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "EstimatedRunTime", Obj.EstimatedRunTime, "name", "Estimate in minutes of the time to battery charge depletion");
  2201.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ExpectedBatteryLife", Obj.ExpectedBatteryLife, "name", "Amount of time it takes to completely drain the battery after it has been fully charged");
  2202.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ExpectedLife", Obj.ExpectedLife, "name", "Battery's expected lifetime");
  2203.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "FullChargeCapacity", Obj.FullChargeCapacity, "name", "Full charge capacity");
  2204.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MaxRechargeTime", Obj.MaxRechargeTime, "name", "Maximum time, in minutes, to fully charge the battery");
  2205.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  2206.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "TimeOnBattery", Obj.TimeOnBattery, "name", "Elapsed time in seconds since UPS last switched to battery power");
  2207.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "TimeToFullCharge", Obj.TimeToFullCharge, "name", "Remaining time to charge the battery fully");
  2208.  
  2209.         i++;
  2210.       }
  2211.     }
  2212.  
  2213.     return xmlDoc;
  2214.   }
  2215.  
  2216.   this._collectPortableBatteryInfo = function()
  2217.   {
  2218.     var fc = new Enumerator(this._ExecQuery("Win32_PortableBattery"));
  2219.  
  2220.     var xmlDoc = null, colItem = null, numItems = 0;
  2221.  
  2222.     for (; !fc.atEnd(); fc.moveNext())
  2223.       numItems++;
  2224.  
  2225.     if(numItems > 0)
  2226.     {
  2227.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  2228.  
  2229.       if(numItems > 1)
  2230.       {
  2231.         colItem = xmlDoc.createElement("Item");
  2232.         xmlDoc.appendChild(colItem);
  2233.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Portable Batteries");
  2234.       }
  2235.  
  2236.       var i = 1;
  2237.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  2238.       {
  2239.         var Obj = fc.item();
  2240.  
  2241.         var root, num = "";
  2242.         if(colItem)
  2243.         {
  2244.           root = xmlDoc.createElement("Element");
  2245.           num = " " + String(i);
  2246.         }
  2247.         else
  2248.         {
  2249.           root = xmlDoc.createElement("Item");
  2250.         }
  2251.  
  2252.         this._xmlSetAttribute(xmlDoc, root, "name", "Portable Battery" + num);
  2253.         if(colItem)
  2254.         {
  2255.           colItem.appendChild(root);
  2256.         }
  2257.         else
  2258.         {
  2259.           xmlDoc.appendChild(root);
  2260.         }
  2261.  
  2262.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  2263.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "BatteryRechargeTime", Obj.BatteryRechargeTime, "name", "Battery recharge time");
  2264.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "BatteryStatus", Obj.BatteryStatus, "name", "Status of battery");
  2265.         this._xmlCreateChildTextNode(xmlDoc, root, "Chemistry", Obj.Chemistry);
  2266.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DesignCapacity", Obj.DesignCapacity, "name", "Design capacity");
  2267.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DesignVoltage", Obj.DesignVoltage, "name", "Design voltage");
  2268.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  2269.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "EstimatedChargeRemaining", Obj.EstimatedChargeRemaining, "name", "Estimated time until battery is fully recharged");
  2270.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "EstimatedRunTime", Obj.EstimatedRunTime, "name", "Estimate in minutes of the time to battery charge depletion");
  2271.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ExpectedBatteryLife", Obj.ExpectedBatteryLife, "name", "Amount of time it takes to completely drain the battery after it has been fully charged");
  2272.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ExpectedLife", Obj.ExpectedLife, "name", "Battery's expected lifetime");
  2273.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "FullChargeCapacity", Obj.FullChargeCapacity, "name", "Full charge capacity");
  2274.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MaxRechargeTime", Obj.MaxRechargeTime, "name", "Maximum time, in minutes, to fully charge the battery");
  2275.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  2276.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "TimeOnBattery", Obj.TimeOnBattery, "name", "Elapsed time in seconds since UPS last switched to battery power");
  2277.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "TimeToFullCharge", Obj.TimeToFullCharge, "name", "Remaining time to charge the battery fully");
  2278.  
  2279.         i++;
  2280.       }
  2281.     }
  2282.  
  2283.     return xmlDoc;
  2284.   }
  2285.  
  2286.   this._collectUPSInfo = function()
  2287.   {
  2288.     var fc = new Enumerator(this._ExecQuery("Win32_UninterruptiblePowerSupply"));
  2289.  
  2290.     var xmlDoc = null, colItem = null, numItems = 0;
  2291.  
  2292.     for (; !fc.atEnd(); fc.moveNext())
  2293.       numItems++;
  2294.  
  2295.     if(numItems > 0)
  2296.     {
  2297.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  2298.  
  2299.       if(numItems > 1)
  2300.       {
  2301.         colItem = xmlDoc.createElement("Item");
  2302.         xmlDoc.appendChild(colItem);
  2303.         this._xmlSetAttribute(xmlDoc, colItem, "name", "UPS Devices");
  2304.       }
  2305.  
  2306.       var i = 1;
  2307.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  2308.       {
  2309.         var Obj = fc.item();
  2310.  
  2311.         var root, num = "";
  2312.         if(colItem)
  2313.         {
  2314.           root = xmlDoc.createElement("Element");
  2315.           num = " " + String(i);
  2316.         }
  2317.         else
  2318.         {
  2319.           root = xmlDoc.createElement("Item");
  2320.         }
  2321.  
  2322.         this._xmlSetAttribute(xmlDoc, root, "name", "UPS Device" + num);
  2323.         if(colItem)
  2324.         {
  2325.           colItem.appendChild(root);
  2326.         }
  2327.         else
  2328.         {
  2329.           xmlDoc.appendChild(root);
  2330.         }
  2331.  
  2332.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  2333.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "BatteryInstalled", Obj.BatteryInstalled, "name", "Battery installed");
  2334.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "CanTurnOffRemotely", Obj.CanTurnOffRemotely, "name", "UPS can be turned off remotely");
  2335.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  2336.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "EstimatedChargeRemaining", Obj.EstimatedChargeRemaining, "name", "Estimated time until UPS's battery is fully recharged");
  2337.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "EstimatedRunTime", Obj.EstimatedRunTime, "name", "Estimated time, in minutes, to battery/generator depletion");
  2338.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "FirstMessageDelay", Obj.FirstMessageDelay, "name", "Length of time between initial power failure and the first message sent to users");
  2339.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "IsSwitchingSupply", Obj.IsSwitchingSupply, "name", "UPS is a switching (as opposed to linear) supply");
  2340.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "LowBatterySignal", Obj.LowBatterySignal, "name", "Has a low battery signal");
  2341.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MessageInterval", Obj.MessageInterval, "name", "Length of time between messages sent to users");
  2342.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  2343.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PowerFailSignal", Obj.PowerFailSignal, "name", "UPS has a power failure signal");
  2344.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "RemainingCapacityStatus", Obj.RemainingCapacityStatus, "name", "Capacity remaining in the UPS' batteries and generator");
  2345.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  2346.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "TimeOnBackup", Obj.TimeOnBackup, "name", "Elapsed time, in seconds, after the UPS last switched to battery power/generator/was restarted");
  2347.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "TotalOutputPower", Obj.TotalOutputPower, "name", "Total output power of the UPS");
  2348.  
  2349.         if(Obj.IsSwitchingSupply == true)
  2350.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "TypeOfRangeSwitching", Obj.TypeOfRangeSwitching, "name", "Type of input voltage range switching implemented");
  2351.  
  2352.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "UPSPort", Obj.UPSPort, "name", "Name of the serial port to which the UPS is connected");
  2353.  
  2354.         i++;
  2355.       }
  2356.     }
  2357.  
  2358.     return xmlDoc;
  2359.   }
  2360.  
  2361.   this._collectFanInfo = function()
  2362.   {
  2363.     var fc = new Enumerator(this._ExecQuery("Win32_Fan"));
  2364.  
  2365.     var xmlDoc = null, colItem = null, numItems = 0;
  2366.  
  2367.     for (; !fc.atEnd(); fc.moveNext())
  2368.       numItems++;
  2369.  
  2370.     if(numItems > 0)
  2371.     {
  2372.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  2373.  
  2374.       if(numItems > 1)
  2375.       {
  2376.         colItem = xmlDoc.createElement("Item");
  2377.         xmlDoc.appendChild(colItem);
  2378.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Cooling fans");
  2379.       }
  2380.  
  2381.       var i = 1;
  2382.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  2383.       {
  2384.         var Obj = fc.item();
  2385.  
  2386.         var root, num = "";
  2387.         if(colItem)
  2388.         {
  2389.           root = xmlDoc.createElement("Element");
  2390.           num = " " + String(i);
  2391.         }
  2392.         else
  2393.         {
  2394.           root = xmlDoc.createElement("Item");
  2395.         }
  2396.  
  2397.         this._xmlSetAttribute(xmlDoc, root, "name", "Cooling fan" + num);
  2398.         if(colItem)
  2399.         {
  2400.           colItem.appendChild(root);
  2401.         }
  2402.         else
  2403.         {
  2404.           xmlDoc.appendChild(root);
  2405.         }
  2406.  
  2407.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ActiveCooling", Obj.ActiveCooling, "name", "Device provides active cooling");
  2408.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  2409.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  2410.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  2411.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PNPDeviceID", Obj.PNPDeviceID, "name", "Windows Plug and Play device identifier");
  2412.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  2413.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "VariableSpeed", Obj.VariableSpeed, "name", "Fan supports variable speeds");
  2414.  
  2415.         i++;
  2416.       }
  2417.     }
  2418.  
  2419.     return xmlDoc;
  2420.   }
  2421.  
  2422.   this._collectHeatPipeInfo = function()
  2423.   {
  2424.     var fc = new Enumerator(this._ExecQuery("Win32_HeatPipe"));
  2425.  
  2426.     var xmlDoc = null, colItem = null, numItems = 0;
  2427.  
  2428.     for (; !fc.atEnd(); fc.moveNext())
  2429.       numItems++;
  2430.  
  2431.     if(numItems > 0)
  2432.     {
  2433.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  2434.  
  2435.       if(numItems > 1)
  2436.       {
  2437.         colItem = xmlDoc.createElement("Item");
  2438.         xmlDoc.appendChild(colItem);
  2439.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Heat pipe cooling devices");
  2440.       }
  2441.  
  2442.       var i = 1;
  2443.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  2444.       {
  2445.         var Obj = fc.item();
  2446.  
  2447.         var root, num = "";
  2448.         if(colItem)
  2449.         {
  2450.           root = xmlDoc.createElement("Element");
  2451.           num = " " + String(i);
  2452.         }
  2453.         else
  2454.         {
  2455.           root = xmlDoc.createElement("Item");
  2456.         }
  2457.  
  2458.         this._xmlSetAttribute(xmlDoc, root, "name", "Heat pipe cooling device" + num);
  2459.         if(colItem)
  2460.         {
  2461.           colItem.appendChild(root);
  2462.         }
  2463.         else
  2464.         {
  2465.           xmlDoc.appendChild(root);
  2466.         }
  2467.  
  2468.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ActiveCooling", Obj.ActiveCooling, "name", "Device provides active cooling");
  2469.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  2470.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  2471.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  2472.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PNPDeviceID", Obj.PNPDeviceID, "name", "Windows Plug and Play device identifier");
  2473.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  2474.  
  2475.         i++;
  2476.       }
  2477.     }
  2478.  
  2479.     return xmlDoc;
  2480.   }
  2481.  
  2482.   this._collectRefrigerationInfo = function()
  2483.   {
  2484.     var fc = new Enumerator(this._ExecQuery("Win32_Refrigeration"));
  2485.  
  2486.     var xmlDoc = null, colItem = null, numItems = 0;
  2487.  
  2488.     for (; !fc.atEnd(); fc.moveNext())
  2489.       numItems++;
  2490.  
  2491.     if(numItems > 0)
  2492.     {
  2493.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  2494.  
  2495.       if(numItems > 1)
  2496.       {
  2497.         colItem = xmlDoc.createElement("Item");
  2498.         xmlDoc.appendChild(colItem);
  2499.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Refrigeration devices");
  2500.       }
  2501.  
  2502.       var i = 1;
  2503.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  2504.       {
  2505.         var Obj = fc.item();
  2506.  
  2507.         var root, num = "";
  2508.         if(colItem)
  2509.         {
  2510.           root = xmlDoc.createElement("Element");
  2511.           num = " " + String(i);
  2512.         }
  2513.         else
  2514.         {
  2515.           root = xmlDoc.createElement("Item");
  2516.         }
  2517.  
  2518.         this._xmlSetAttribute(xmlDoc, root, "name", "Refrigeration device" + num);
  2519.         if(colItem)
  2520.         {
  2521.           colItem.appendChild(root);
  2522.         }
  2523.         else
  2524.         {
  2525.           xmlDoc.appendChild(root);
  2526.         }
  2527.  
  2528.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ActiveCooling", Obj.ActiveCooling, "name", "Device provides active cooling");
  2529.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  2530.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  2531.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  2532.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PNPDeviceID", Obj.PNPDeviceID, "name", "Windows Plug and Play device identifier");
  2533.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  2534.  
  2535.         i++;
  2536.       }
  2537.     }
  2538.  
  2539.     return xmlDoc;
  2540.   }
  2541.  
  2542.   this._collectPOTSModemInfo = function()
  2543.   {
  2544.     var fc = new Enumerator(this._ExecQuery("Win32_POTSModem"));
  2545.  
  2546.     var xmlDoc = null, colItem = null, numItems = 0;
  2547.  
  2548.     for (; !fc.atEnd(); fc.moveNext())
  2549.       numItems++;
  2550.  
  2551.     if(numItems > 0)
  2552.     {
  2553.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  2554.  
  2555.       if(numItems > 1)
  2556.       {
  2557.         colItem = xmlDoc.createElement("Item");
  2558.         xmlDoc.appendChild(colItem);
  2559.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Plain Old Telephone Service (POTS) modems");
  2560.       }
  2561.  
  2562.       var i = 1;
  2563.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  2564.       {
  2565.         var Obj = fc.item();
  2566.  
  2567.         var root, num = "";
  2568.         if(colItem)
  2569.         {
  2570.           root = xmlDoc.createElement("Element");
  2571.           num = " " + String(i);
  2572.         }
  2573.         else
  2574.         {
  2575.           root = xmlDoc.createElement("Item");
  2576.         }
  2577.  
  2578.         this._xmlSetAttribute(xmlDoc, root, "name", ((numItems > 1) ? "Modem" : "Plain Old Telephone Service (POTS) modem") + num);
  2579.         if(colItem)
  2580.         {
  2581.           colItem.appendChild(root);
  2582.         }
  2583.         else
  2584.         {
  2585.           xmlDoc.appendChild(root);
  2586.         }
  2587.  
  2588.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "AnswerMode", this._translate_answer_mode(Obj.AnswerMode), "name", "Auto-answer/call-back setting for the modem");
  2589.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "AttachedTo", Obj.AttachedTo, "name", "Port to which this modem is attached");
  2590.         this._xmlCreateChildTextNode(xmlDoc, root, "Availability", this._translate_availability(Obj.Availability));
  2591.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceID", Obj.DeviceID, "name", "Device ID");
  2592.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DeviceType", Obj.DeviceType, "name", "Physical type of the modem");
  2593.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DialType", this._translate_dial_tone(Obj.DialType), "name", "Type of dialing method used");
  2594.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DriverDate", this._translate_date(Obj.DriverDate), "name", "Date of the modem driver");
  2595.         this._xmlCreateChildTextNode(xmlDoc, root, "Model", Obj.Model);
  2596.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ModemInfPath", Obj.ModemInfPath, "name", "Path to this modem's .inf file");
  2597.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PortSubClass", this._translate_modem_port(Obj.PortSubClass), "name", "Definition of the port used for this modem");
  2598.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Prefix", Obj.Prefix, "name", "Dialing prefix used to access an outside line");
  2599.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ProviderName", Obj.ProviderName, "name", "Provider name");
  2600.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "RingsBeforeAnswer", Obj.RingsBeforeAnswer, "name", "Number of rings before the modem answers an incoming call");
  2601.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  2602.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "StringFormat", Obj.StringFormat, "name", "Type of characters used for text passed through the modem");
  2603.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SupportsCallback", Obj.SupportsCallback, "name", "Modem supports call-back");
  2604.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "TimeOfLastReset", this._translate_date(Obj.TimeOfLastReset), "name", "Date and time the modem was last reset");
  2605.  
  2606.         if(Obj.CountriesSupported != null)
  2607.         {
  2608.           var cs_node = this._xmlCreateChildNodeWithAttribute(xmlDoc, root, "CountriesSupported", "name", "Countries supported:");
  2609.  
  2610.           var c_count = 1;
  2611.           var csps = Obj.CountriesSupported.toArray();
  2612.           var cspc = new Enumerator(csps);
  2613.  
  2614.           for (; !cspc.atEnd(); cspc.moveNext())
  2615.           {
  2616.             var cs_obj = cspc.item();
  2617.             this._xmlCreateChildTextNodeWithAttribute(xmlDoc, cs_node, "Country" + String(c_count), String(cs_obj), "name", "Country " + String(c_count));
  2618.  
  2619.             c_count++;
  2620.           }
  2621.         }
  2622.  
  2623.         i++;
  2624.       }
  2625.     }
  2626.  
  2627.     return xmlDoc;
  2628.   }
  2629.  
  2630.   this._collectSystemEnclosureInfo = function()
  2631.   {
  2632.     var fc = new Enumerator(this._ExecQuery("Win32_SystemEnclosure"));
  2633.  
  2634.     var xmlDoc = null, colItem = null, numItems = 0;
  2635.  
  2636.     for (; !fc.atEnd(); fc.moveNext())
  2637.       numItems++;
  2638.  
  2639.     if(numItems > 0)
  2640.     {
  2641.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  2642.  
  2643.       if(numItems > 1)
  2644.       {
  2645.         colItem = xmlDoc.createElement("Item");
  2646.         xmlDoc.appendChild(colItem);
  2647.         this._xmlSetAttribute(xmlDoc, colItem, "name", "System enclosures");
  2648.       }
  2649.  
  2650.       var i = 1;
  2651.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  2652.       {
  2653.         var Obj = fc.item();
  2654.  
  2655.         var root, num = "";
  2656.         if(colItem)
  2657.         {
  2658.           root = xmlDoc.createElement("Element");
  2659.           num = " " + String(i);
  2660.         }
  2661.         else
  2662.         {
  2663.           root = xmlDoc.createElement("Item");
  2664.         }
  2665.  
  2666.         this._xmlSetAttribute(xmlDoc, root, "name", "System enclosure" + num);
  2667.         if(colItem)
  2668.         {
  2669.           colItem.appendChild(root);
  2670.         }
  2671.         else
  2672.         {
  2673.           xmlDoc.appendChild(root);
  2674.         }
  2675.  
  2676.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "AudibleAlarm", Obj.AudibleAlarm, "name", "Frame is equipped with an audible alarm");
  2677.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "CableManagementStrategy", Obj.CableManagementStrategy, "name", "How the various cables are connected and bundled for the frame");
  2678.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "HeatGeneration", Obj.HeatGeneration, "name", "Amount of heat generated by the chassis, BTU/hour");
  2679.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "LockPresent", Obj.LockPresent, "name", "Frame is protected with a lock");
  2680.         this._xmlCreateChildTextNode(xmlDoc, root, "Manufacturer", Obj.Manufacturer);
  2681.         this._xmlCreateChildTextNode(xmlDoc, root, "Model", Obj.Model);
  2682.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  2683.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "NumberOfPowerCords", Obj.NumberOfPowerCords, "name", "Number of power cords which must be connected to the chassis, for all the components to operate");
  2684.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  2685.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Tag", Obj.Tag, "name", "Unique identifier of the system enclosure");
  2686.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "VisibleAlarm", Obj.VisibleAlarm, "name", "Equipment includes a visible alarm");
  2687.  
  2688.         if(Obj.ChassisTypes != null)
  2689.         {
  2690.           var ct_node = this._xmlCreateChildNodeWithAttribute(xmlDoc, root, "ChassisTypes", "name", "Chassis types:");
  2691.  
  2692.           var ct_count = 1;
  2693.           var ctps = Obj.ChassisTypes.toArray();
  2694.           var ctpc = new Enumerator(ctps);
  2695.  
  2696.           for (; !ctpc.atEnd(); ctpc.moveNext())
  2697.           {
  2698.             var ct_obj = ctpc.item();
  2699.             this._xmlCreateChildTextNodeWithAttribute(xmlDoc, ct_node, "ChassisType" + String(ct_count), this._translate_chassis_type(String(ct_obj)), "name", "Type " + String(ct_count));
  2700.  
  2701.             ct_count++;
  2702.           }
  2703.         }
  2704.  
  2705.         if(Obj.ServicePhilosophy != null)
  2706.         {
  2707.           var ct_node = this._xmlCreateChildNodeWithAttribute(xmlDoc, root, "ServicePhilosophy", "name", "Service philosophy:");
  2708.  
  2709.           var ct_count = 1;
  2710.           var ctps = Obj.ServicePhilosophy.toArray();
  2711.           var ctpc = new Enumerator(ctps);
  2712.  
  2713.           for (; !ctpc.atEnd(); ctpc.moveNext())
  2714.           {
  2715.             var ct_obj = ctpc.item();
  2716.             this._xmlCreateChildTextNodeWithAttribute(xmlDoc, ct_node, "ServiceType" + String(ct_count), this._translate_service_philosophy(String(ct_obj)), "name", "Service type " + String(ct_count));
  2717.  
  2718.             ct_count++;
  2719.           }
  2720.         }
  2721.  
  2722.         i++;
  2723.       }
  2724.     }
  2725.  
  2726.     return xmlDoc;
  2727.   }
  2728.  
  2729.   // Software monitoring:
  2730.  
  2731.   this._collectUserInfo = function()
  2732.   {
  2733.     var fc = new Enumerator(this._ExecQuery("Win32_UserAccount"));
  2734.  
  2735.     var xmlDoc = null, colItem = null, numItems = 0;
  2736.  
  2737.     for (; !fc.atEnd(); fc.moveNext())
  2738.       numItems++;
  2739.  
  2740.     if(numItems > 0)
  2741.     {
  2742.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  2743.  
  2744.       if(numItems > 1)
  2745.       {
  2746.         colItem = xmlDoc.createElement("Item");
  2747.         xmlDoc.appendChild(colItem);
  2748.         this._xmlSetAttribute(xmlDoc, colItem, "name", "User Accounts");
  2749.       }
  2750.  
  2751.       var i = 1;
  2752.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  2753.       {
  2754.         var Obj = fc.item();
  2755.  
  2756.         var root, num = "";
  2757.         if(colItem)
  2758.         {
  2759.           root = xmlDoc.createElement("Element");
  2760.           num = " " + String(i);
  2761.         }
  2762.         else
  2763.         {
  2764.           root = xmlDoc.createElement("Item");
  2765.         }
  2766.  
  2767.         this._xmlSetAttribute(xmlDoc, root, "name", "User Account" + num);
  2768.         if(colItem)
  2769.         {
  2770.           colItem.appendChild(root);
  2771.         }
  2772.         else
  2773.         {
  2774.           xmlDoc.appendChild(root);
  2775.         }
  2776.  
  2777.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "AccountType", this._translate_user_account_type(Obj.AccountType), "name", "Type of account");
  2778.         this._xmlCreateChildTextNode(xmlDoc, root, "Caption", Obj.Caption);
  2779.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Disabled", Obj.Disabled, "name", "Is disabled?");
  2780.         this._xmlCreateChildTextNode(xmlDoc, root, "Domain", Obj.Domain);
  2781.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "FullName", Obj.FullName, "name", "Full name");
  2782.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "LocalAccount", Obj.LocalAccount, "name", "Is local account?");
  2783.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Lockout", Obj.Lockout, "name", "Is locked out?");
  2784.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  2785.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PasswordChangeable", Obj.PasswordChangeable, "name", "Is password changeble on this account?");
  2786.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PasswordExpires", Obj.PasswordExpires, "name", "Password expires on this account");
  2787.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PasswordRequired", Obj.PasswordRequired, "name", "Password is required on this user account");
  2788.  
  2789.         i++;
  2790.       }
  2791.     }
  2792.  
  2793.     return xmlDoc;
  2794.   }
  2795.  
  2796.   this._collectGroupInfo = function()
  2797.   {
  2798.     var fc = new Enumerator(this._ExecQuery("Win32_Group"));
  2799.  
  2800.     var xmlDoc = null, colItem = null, numItems = 0;
  2801.  
  2802.     for (; !fc.atEnd(); fc.moveNext())
  2803.       numItems++;
  2804.  
  2805.     if(numItems > 0)
  2806.     {
  2807.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  2808.  
  2809.       if(numItems > 1)
  2810.       {
  2811.         colItem = xmlDoc.createElement("Item");
  2812.         xmlDoc.appendChild(colItem);
  2813.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Group accounts");
  2814.       }
  2815.  
  2816.       var i = 1;
  2817.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  2818.       {
  2819.         var Obj = fc.item();
  2820.  
  2821.         var root, num = "";
  2822.         if(colItem)
  2823.         {
  2824.           root = xmlDoc.createElement("Element");
  2825.           num = " " + String(i);
  2826.         }
  2827.         else
  2828.         {
  2829.           root = xmlDoc.createElement("Item");
  2830.         }
  2831.  
  2832.         this._xmlSetAttribute(xmlDoc, root, "name", "Group account" + num);
  2833.         if(colItem)
  2834.         {
  2835.           colItem.appendChild(root);
  2836.         }
  2837.         else
  2838.         {
  2839.           xmlDoc.appendChild(root);
  2840.         }
  2841.  
  2842.         this._xmlCreateChildTextNode(xmlDoc, root, "Domain", Obj.Domain);
  2843.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  2844.  
  2845.         i++;
  2846.       }
  2847.     }
  2848.  
  2849.     return xmlDoc;
  2850.   }
  2851.  
  2852.   this._collectLogonSessionInfo = function()
  2853.   {
  2854.     var fc = new Enumerator(this._ExecQuery("Win32_LogonSession"));
  2855.  
  2856.     var xmlDoc = null, colItem = null, numItems = 0;
  2857.  
  2858.     for (; !fc.atEnd(); fc.moveNext())
  2859.       numItems++;
  2860.  
  2861.     if(numItems > 0)
  2862.     {
  2863.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  2864.  
  2865.       if(numItems > 1)
  2866.       {
  2867.         colItem = xmlDoc.createElement("Item");
  2868.         xmlDoc.appendChild(colItem);
  2869.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Logon Sessions");
  2870.       }
  2871.  
  2872.       var i = 1;
  2873.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  2874.       {
  2875.         var Obj = fc.item();
  2876.  
  2877.         var root, num = "";
  2878.         if(colItem)
  2879.         {
  2880.           root = xmlDoc.createElement("Element");
  2881.           num = " " + String(i);
  2882.         }
  2883.         else
  2884.         {
  2885.           root = xmlDoc.createElement("Item");
  2886.         }
  2887.  
  2888.         this._xmlSetAttribute(xmlDoc, root, "name", "Logon Session" + num);
  2889.         if(colItem)
  2890.         {
  2891.           colItem.appendChild(root);
  2892.         }
  2893.         else
  2894.         {
  2895.           xmlDoc.appendChild(root);
  2896.         }
  2897.  
  2898.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "AuthenticationPackage", Obj.AuthenticationPackage, "name", "Authentication subsystem");
  2899.         this._xmlCreateChildTextNode(xmlDoc, root, "Caption", Obj.Caption);
  2900.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "LogonId", Obj.LogonId, "name", "Logon ID");
  2901.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "LogonType", this._translate_logon_type(Obj.LogonType), "name", "Type of logon");
  2902.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  2903.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "StartTime", this._translate_date(Obj.StartTime), "name", "Session started");
  2904.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  2905.  
  2906.         i++;
  2907.       }
  2908.     }
  2909.  
  2910.     return xmlDoc;
  2911.   }
  2912.  
  2913.   this._collectProductInfo = function()
  2914.   {
  2915.     var fc = new Enumerator(this._ExecQuery("Win32_Product"));
  2916.  
  2917.     var xmlDoc = null, colItem = null, numItems = 0;
  2918.  
  2919.     for (; !fc.atEnd(); fc.moveNext())
  2920.       numItems++;
  2921.  
  2922.     if(numItems > 0)
  2923.     {
  2924.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  2925.  
  2926.       if(numItems > 1)
  2927.       {
  2928.         colItem = xmlDoc.createElement("Item");
  2929.         xmlDoc.appendChild(colItem);
  2930.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Installed Software");
  2931.       }
  2932.  
  2933.       var i = 1;
  2934.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  2935.       {
  2936.         var Obj = fc.item();
  2937.  
  2938.         var root, num = "";
  2939.         if(colItem)
  2940.         {
  2941.           root = xmlDoc.createElement("Element");
  2942.           num = " " + String(i);
  2943.         }
  2944.         else
  2945.         {
  2946.           root = xmlDoc.createElement("Item");
  2947.         }
  2948.  
  2949.         this._xmlSetAttribute(xmlDoc, root, "name", "Software Product" + num);
  2950.         if(colItem)
  2951.         {
  2952.           colItem.appendChild(root);
  2953.         }
  2954.         else
  2955.         {
  2956.           xmlDoc.appendChild(root);
  2957.         }
  2958.  
  2959.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "IdentifyingNumber", Obj.IdentifyingNumber, "name", "Product ID");
  2960.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "InstallLocation", Obj.InstallLocation, "name", "Product path");
  2961.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "InstallState", this._translate_software_install_state(Obj.InstallState), "name", "Installed state of the product");
  2962.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  2963.         this._xmlCreateChildTextNode(xmlDoc, root, "Vendor", Obj.Vendor);
  2964.         this._xmlCreateChildTextNode(xmlDoc, root, "Version", Obj.Version);
  2965.  
  2966.         i++;
  2967.       }
  2968.     }
  2969.  
  2970.     return xmlDoc;
  2971.   }
  2972.  
  2973.   this._collectCodecInfo = function()
  2974.   {
  2975.     var fc = new Enumerator(this._ExecQuery("Win32_CodecFile"));
  2976.  
  2977.     var xmlDoc = null, colItem = null, numItems = 0;
  2978.  
  2979.     for (; !fc.atEnd(); fc.moveNext())
  2980.       numItems++;
  2981.  
  2982.     if(numItems > 0)
  2983.     {
  2984.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  2985.  
  2986.       if(numItems > 1)
  2987.       {
  2988.         colItem = xmlDoc.createElement("Item");
  2989.         xmlDoc.appendChild(colItem);
  2990.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Audio/Video Codecs");
  2991.       }
  2992.  
  2993.       var i = 1;
  2994.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  2995.       {
  2996.         var Obj = fc.item();
  2997.  
  2998.         var root, num = "";
  2999.         if(colItem)
  3000.         {
  3001.           root = xmlDoc.createElement("Element");
  3002.           num = " " + String(i);
  3003.         }
  3004.         else
  3005.         {
  3006.           root = xmlDoc.createElement("Item");
  3007.         }
  3008.  
  3009.         this._xmlSetAttribute(xmlDoc, root, "name", "Codec" + num);
  3010.         if(colItem)
  3011.         {
  3012.           colItem.appendChild(root);
  3013.         }
  3014.         else
  3015.         {
  3016.           xmlDoc.appendChild(root);
  3017.         }
  3018.  
  3019.         this._xmlCreateChildTextNode(xmlDoc, root, "Description", Obj.Description);
  3020.         this._xmlCreateChildTextNode(xmlDoc, root, "InstallDate", this._translate_date(Obj.InstallDate));
  3021.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  3022.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  3023.         this._xmlCreateChildTextNode(xmlDoc, root, "Version", Obj.Version);
  3024.  
  3025.         i++;
  3026.       }
  3027.     }
  3028.  
  3029.     return xmlDoc;
  3030.   }
  3031.  
  3032.   this._collectNetworkProtocolInfo = function()
  3033.   {
  3034.     var fc = new Enumerator(this._ExecQuery("Win32_NetworkProtocol"));
  3035.  
  3036.     var xmlDoc = null, colItem = null, numItems = 0;
  3037.  
  3038.     for (; !fc.atEnd(); fc.moveNext())
  3039.       numItems++;
  3040.  
  3041.     if(numItems > 0)
  3042.     {
  3043.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  3044.  
  3045.       if(numItems > 1)
  3046.       {
  3047.         colItem = xmlDoc.createElement("Item");
  3048.         xmlDoc.appendChild(colItem);
  3049.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Network protocols");
  3050.       }
  3051.  
  3052.       var i = 1;
  3053.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  3054.       {
  3055.         var Obj = fc.item();
  3056.  
  3057.         var root, num = "";
  3058.         if(colItem)
  3059.         {
  3060.           root = xmlDoc.createElement("Element");
  3061.           num = " " + String(i);
  3062.         }
  3063.         else
  3064.         {
  3065.           root = xmlDoc.createElement("Item");
  3066.         }
  3067.  
  3068.         this._xmlSetAttribute(xmlDoc, root, "name", "Network Protocol" + num);
  3069.         if(colItem)
  3070.         {
  3071.           colItem.appendChild(root);
  3072.         }
  3073.         else
  3074.         {
  3075.           xmlDoc.appendChild(root);
  3076.         }
  3077.  
  3078.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ConnectionlessService", Obj.ConnectionlessService, "name", "Protocol supports connectionless service");
  3079.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "GuaranteesDelivery", Obj.GuaranteesDelivery, "name", "Protocol supports guaranteed delivery of data packets");
  3080.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "GuaranteesSequencing", Obj.GuaranteesSequencing, "name", "Protocol guarantees sequencing");
  3081.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MessageOriented", Obj.MessageOriented, "name", "Protocol is message-oriented");
  3082.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  3083.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  3084.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SupportsBroadcasting", Obj.SupportsBroadcasting, "name", "Protocol supports broadcasting");
  3085.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SupportsConnectData", Obj.SupportsConnectData, "name", "Protocol allows data to be connected across the network");
  3086.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SupportsDisconnectData", Obj.SupportsDisconnectData, "name", "Protocol allows data to be disconnected across the network");
  3087.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SupportsEncryption", Obj.SupportsEncryption, "name", "Protocol supports data encryption");
  3088.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SupportsExpeditedData", Obj.SupportsExpeditedData, "name", "Protocol supports expedited (\"urgent\") data");
  3089.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SupportsFragmentation", Obj.SupportsFragmentation, "name", "Protocol supports transmitting the data in fragments");
  3090.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SupportsGracefulClosing", Obj.SupportsGracefulClosing, "name", "Protocol supports two-phase close operations");
  3091.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SupportsGuaranteedBandwidth", Obj.SupportsGuaranteedBandwidth, "name", "Protocol has a mechanism to maintain a guaranteed bandwidth");
  3092.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SupportsMulticasting", Obj.SupportsMulticasting, "name", "Protocol supports multicasting");
  3093.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SupportsQualityofService", Obj.SupportsQualityofService, "name", "Protocol is capable of Quality of Service (QOS) support");
  3094.  
  3095.         i++;
  3096.       }
  3097.     }
  3098.  
  3099.     return xmlDoc;
  3100.   }
  3101.  
  3102.   this._collectNetworkLoginProfileInfo = function()
  3103.   {
  3104.     var fc = new Enumerator(this._ExecQuery("Win32_NetworkLoginProfile"));
  3105.  
  3106.     var xmlDoc = null, colItem = null, numItems = 0;
  3107.  
  3108.     for (; !fc.atEnd(); fc.moveNext())
  3109.       numItems++;
  3110.  
  3111.     if(numItems > 0)
  3112.     {
  3113.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  3114.  
  3115.       if(numItems > 1)
  3116.       {
  3117.         colItem = xmlDoc.createElement("Item");
  3118.         xmlDoc.appendChild(colItem);
  3119.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Network Login Profiles");
  3120.       }
  3121.  
  3122.       var i = 1;
  3123.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  3124.       {
  3125.         var Obj = fc.item();
  3126.  
  3127.         var root, num = "";
  3128.         if(colItem)
  3129.         {
  3130.           root = xmlDoc.createElement("Element");
  3131.           num = " " + String(i);
  3132.         }
  3133.         else
  3134.         {
  3135.           root = xmlDoc.createElement("Item");
  3136.         }
  3137.  
  3138.         this._xmlSetAttribute(xmlDoc, root, "name", "Network Login Profile" + num);
  3139.         if(colItem)
  3140.         {
  3141.           colItem.appendChild(root);
  3142.         }
  3143.         else
  3144.         {
  3145.           xmlDoc.appendChild(root);
  3146.         }
  3147.  
  3148.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "AccountExpires", Obj.AccountExpires, "name", "Account expiration date");
  3149.  
  3150.         if((Obj.AuthorizationFlags != null) && (Obj.AuthorizationFlags != 0))
  3151.         {
  3152.           var aflags_node = this._xmlCreateChildNodeWithAttribute(xmlDoc, root, "AuthorizationFlags", "name", "Resources a user is authorized to use or modify");
  3153.  
  3154.           if(Obj.AuthorizationFlags & 0x1) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, aflags_node, "AuthFlag1", "true", "name", "Printer");
  3155.           if(Obj.AuthorizationFlags & 0x2) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, aflags_node, "AuthFlag2", "true", "name", "Communication");
  3156.           if(Obj.AuthorizationFlags & 0x4) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, aflags_node, "AuthFlag3", "true", "name", "Server");
  3157.           if(Obj.AuthorizationFlags & 0x8) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, aflags_node, "AuthFlag4", "true", "name", "Accounts");
  3158.         }
  3159.  
  3160.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "BadPasswordCount", Obj.BadPasswordCount, "name", "Number of times the user entered a bad password when logging on");
  3161.  
  3162.         this._xmlCreateChildTextNode(xmlDoc, root, "Comment", Obj.Comment);
  3163.         this._xmlCreateChildTextNode(xmlDoc, root, "Description", Obj.Description);
  3164.  
  3165.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "FullName", Obj.FullName, "name", "Full name of the account");
  3166.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "HomeDirectory", Obj.HomeDirectory, "name", "Path to the home directory of the user");
  3167.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "HomeDirectoryDrive", Obj.HomeDirectoryDrive, "name", "Drive letter assigned to the user's home directory");
  3168.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "LastLogoff", this._translate_date(Obj.LastLogoff), "name", "User last logged off the system (time of logoff)");
  3169.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "LastLogon", this._translate_date(Obj.LastLogon), "name", "User last logged on to the system (time of logon)");
  3170.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "LogonHours", Obj.LogonHours, "name", "Times during the week when the user can log on");
  3171.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "LogonServer", Obj.LogonServer, "name", "Name of the server to which logon requests are sent");
  3172.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MaximumStorage", (Obj.MaximumStorage == 4294967295 ? "All available" : Obj.MaximumStorage), "name", "Maximum amount of disk space available to the user, bytes");
  3173.  
  3174.         if(this._isempty(Obj.FullName))
  3175.           this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Name", Obj.Name, "name", "Account name");
  3176.  
  3177.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "NumberOfLogons", Obj.NumberOfLogons, "name", "Number of successful logons");
  3178.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PasswordAge", this._translate_pass_age(Obj.PasswordAge), "name", "Length of time a password has been in effect");
  3179.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PasswordExpires", this._translate_date(Obj.PasswordExpires), "name", "Date/time when the password will expire");
  3180.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PrimaryGroupId", Obj.PrimaryGroupId, "name", "Relative identifier (RID) of the Primary Global Group for this user");
  3181.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Privileges", this._translate_privilege(Obj.Privileges), "name", "Level of privilege assigned");
  3182.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Profile", Obj.Profile, "name", "Path to the user's profile");
  3183.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ScriptPath", Obj.ScriptPath, "name", "Directory path to the user's logon script");
  3184.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SettingID", Obj.SettingID, "name", "Setting ID");
  3185.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "UnitsPerWeek", Obj.UnitsPerWeek, "name", "Number of time units the week is divided into");
  3186.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "UserId", Obj.UserId, "name", "Relative identifier (RID) of the user");
  3187.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "UserType", Obj.UserType, "name", "Type of account");
  3188.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Workstations", Obj.Workstations, "name", "Names of workstations from which the user can log on");
  3189.  
  3190.         if(Obj.Flags != null)
  3191.         {
  3192.           var flags_node = this._xmlCreateChildNode(xmlDoc, root, "Flags");
  3193.  
  3194.           if(Obj.Flags & 0x1) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, flags_node, "Flag1", "true", "name", "Logon Script Was Executed");
  3195.           if(Obj.Flags & 0x2) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, flags_node, "Flag2", "true", "name", "Account Is Disabled");
  3196.           if(Obj.Flags & 0x8) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, flags_node, "Flag3", "true", "name", "Home Directory Required");
  3197.           if(Obj.Flags & 0x10) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, flags_node, "Flag4", "true", "name", "The Account Is Locked Out");
  3198.           if(Obj.Flags & 0x20) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, flags_node, "Flag5", "true", "name", "Password Not Required");
  3199.           if(Obj.Flags & 0x40) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, flags_node, "Flag6", "true", "name", "Password Can't Change");
  3200.           if(Obj.Flags & 0x80) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, flags_node, "Flag7", "true", "name", "Encrypted Test Password Allowed");
  3201.           if(Obj.Flags & 0x100) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, flags_node, "Flag8", "true", "name", "Temporary Duplicate Account");
  3202.           if(Obj.Flags & 0x200) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, flags_node, "Flag9", "true", "name", "Normal Account");
  3203.           if(Obj.Flags & 0x800) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, flags_node, "Flag10", "true", "name", "Interdomain Trust Account");
  3204.           if(Obj.Flags & 0x1000) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, flags_node, "Flag11", "true", "name", "Workstation Trust Account");
  3205.           if(Obj.Flags & 0x2000) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, flags_node, "Flag12", "true", "name", "Server Trust Account");
  3206.           if(Obj.Flags & 0x10000) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, flags_node, "Flag13", "true", "name", "Don't Expire Password");
  3207.           if(Obj.Flags & 0x114240) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, flags_node, "Flag14", "true", "name", "MNS Logon Account");
  3208.           if(Obj.Flags & 0x40000) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, flags_node, "Flag15", "true", "name", "Smartcard Required");
  3209.           if(Obj.Flags & 0x80000) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, flags_node, "Flag16", "true", "name", "Trusted For Delegation");
  3210.           if(Obj.Flags & 0x100000) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, flags_node, "Flag17", "true", "name", "Not Delegated");
  3211.           if(Obj.Flags & 0x200000) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, flags_node, "Flag18", "true", "name", "Use DES Key Only");
  3212.           if(Obj.Flags & 0x400000) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, flags_node, "Flag19", "true", "name", "Don't Require Preauthorization");
  3213.           if(Obj.Flags & 0x800000) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, flags_node, "Flag20", "true", "name", "Password Expired");
  3214.         }
  3215.  
  3216.         i++;
  3217.       }
  3218.     }
  3219.  
  3220.     return xmlDoc;
  3221.   }
  3222.  
  3223.   this._collectTimeInfo = function()
  3224.   {
  3225.     var fc = new Enumerator(this._ExecQuery("Win32_LocalTime"));
  3226.  
  3227.     var xmlDoc = null, colItem = null, numItems = 0;
  3228.  
  3229.     for (; !fc.atEnd(); fc.moveNext())
  3230.       numItems++;
  3231.  
  3232.     if(numItems > 0)
  3233.     {
  3234.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  3235.  
  3236.       if(numItems > 1)
  3237.       {
  3238.         colItem = xmlDoc.createElement("Item");
  3239.         xmlDoc.appendChild(colItem);
  3240.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Local Time Settings");
  3241.       }
  3242.  
  3243.       var i = 1;
  3244.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  3245.       {
  3246.         var Obj = fc.item();
  3247.  
  3248.         var root, num = "";
  3249.         if(colItem)
  3250.         {
  3251.           root = xmlDoc.createElement("Element");
  3252.           num = " " + String(i);
  3253.         }
  3254.         else
  3255.         {
  3256.           root = xmlDoc.createElement("Item");
  3257.         }
  3258.  
  3259.         this._xmlSetAttribute(xmlDoc, root, "name", "Local Time" + num);
  3260.         if(colItem)
  3261.         {
  3262.           colItem.appendChild(root);
  3263.         }
  3264.         else
  3265.         {
  3266.           xmlDoc.appendChild(root);
  3267.         }
  3268.  
  3269.         this._xmlCreateChildTextNode(xmlDoc, root, "Day", Obj.Day);
  3270.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DayOfWeek", Obj.DayOfWeek, "name", "Day of week");
  3271.         this._xmlCreateChildTextNode(xmlDoc, root, "Hour", Obj.Hour);
  3272.         this._xmlCreateChildTextNode(xmlDoc, root, "Minute", Obj.Minute);
  3273.         this._xmlCreateChildTextNode(xmlDoc, root, "Month", Obj.Month);
  3274.         this._xmlCreateChildTextNode(xmlDoc, root, "Quarter", Obj.Quarter);
  3275.         this._xmlCreateChildTextNode(xmlDoc, root, "Second", Obj.Second);
  3276.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "WeekInMonth", Obj.WeekInMonth, "name", "Week in month");
  3277.         this._xmlCreateChildTextNode(xmlDoc, root, "Year", Obj.Year);
  3278.  
  3279.         i++;
  3280.       }
  3281.     }
  3282.  
  3283.     return xmlDoc;
  3284.   }
  3285.  
  3286.   this._collectTimeZoneInfo = function()
  3287.   {
  3288.     var fc = new Enumerator(this._ExecQuery("Win32_TimeZone"));
  3289.  
  3290.     var xmlDoc = null, colItem = null, numItems = 0;
  3291.  
  3292.     for (; !fc.atEnd(); fc.moveNext())
  3293.       numItems++;
  3294.  
  3295.     if(numItems > 0)
  3296.     {
  3297.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  3298.  
  3299.       if(numItems > 1)
  3300.       {
  3301.         colItem = xmlDoc.createElement("Item");
  3302.         xmlDoc.appendChild(colItem);
  3303.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Time Zone Settings");
  3304.       }
  3305.  
  3306.       var i = 1;
  3307.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  3308.       {
  3309.         var Obj = fc.item();
  3310.  
  3311.         var root, num = "";
  3312.         if(colItem)
  3313.         {
  3314.           root = xmlDoc.createElement("Element");
  3315.           num = " " + String(i);
  3316.         }
  3317.         else
  3318.         {
  3319.           root = xmlDoc.createElement("Item");
  3320.         }
  3321.  
  3322.         this._xmlSetAttribute(xmlDoc, root, "name", "Time Zone" + num);
  3323.         if(colItem)
  3324.         {
  3325.           colItem.appendChild(root);
  3326.         }
  3327.         else
  3328.         {
  3329.           xmlDoc.appendChild(root);
  3330.         }
  3331.  
  3332.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Bias", Obj.Bias, "name", "Bias from UTC, minutes");
  3333.         this._xmlCreateChildTextNode(xmlDoc, root, "Caption", Obj.Caption);
  3334.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DaylightBias", Obj.DaylightBias, "name", "Daylight saving time bias, minutes");
  3335.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DaylightName", Obj.DaylightName, "name", "Daylight time zone name");
  3336.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SettingID", Obj.SettingID, "name", "Setting ID");
  3337.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "StandardBias", Obj.StandardBias, "name", "Standard time bias, minutes");
  3338.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "StandardName", Obj.StandardName, "name", "Standard time zone name");
  3339.  
  3340.         // All other properties have been 'switched off' - too much space & too little use...
  3341.   /*
  3342.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DaylightDay", Obj.DaylightDay, "name", "DaylightDayOfWeek of the DaylightMonth when the transition from standard time to daylight saving time occurs on this operating system");
  3343.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DaylightDayOfWeek", Obj.DaylightDayOfWeek, "name", "Day of the week when the transition from standard time to daylight saving time occurs on this operating system");
  3344.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DaylightHour", Obj.DaylightHour, "name", "Hour of the day when the transition from standard time to daylight saving time occurs on this operating system");
  3345.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DaylightMillisecond", Obj.DaylightMillisecond, "name", "Millisecond of of the DaylightSecond when the transition from standard time to daylight saving time occurs on this operating system");
  3346.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DaylightMinute", Obj.DaylightMinute, "name", "Minute of the DaylightHour when the transition from standard time to daylight saving time occurs on this operating system");
  3347.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DaylightMonth", Obj.DaylightMonth, "name", "Month when the transition from standard time to daylight saving time occurs on this operating system");
  3348.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DaylightSecond", Obj.DaylightSecond, "name", "Second of of the DaylightMinute when the transition from standard time to daylight saving time occurs on this operating system");
  3349.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DaylightYear", Obj.DaylightYear, "name", "Year when daylight saving time is in effect (not required)");
  3350.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "StandardDay", Obj.StandardDay, "name", "StandardDayOfWeek of the StandardMonth when the transition from daylight saving time to standard time occurs on this operating system");
  3351.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "StandardDayOfWeek", Obj.StandardDayOfWeek, "name", "Day of the week when the transition from daylight saving time to standard time occurs on this operating system");
  3352.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "StandardHour", Obj.StandardHour, "name", "Hour of the day when the transition from daylight saving time to standard time occurs on this operating system.");
  3353.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "StandardMillisecond", Obj.StandardMillisecond, "name", "Millisecond of the StandardSecond when the transition from daylight saving time to standard time occurs on this operating system");
  3354.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "StandardMinute", Obj.StandardMinute, "name", "Minute of the StandardDay when the transition from daylight saving time to standard time occurs on this operating system");
  3355.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "StandardMonth", Obj.StandardMonth, "name", "Month when the transition from daylight saving time to standard time occurs on this operating system");
  3356.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "StandardSecond", Obj.StandardSecond, "name", "Second of the StandardMinute when the transition from daylight saving time to standard time occurs on this operating system");
  3357.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "StandardYear", Obj.StandardYear, "name", "Year when standard time is in effect (not required)");
  3358.   */
  3359.         i++;
  3360.       }
  3361.     }
  3362.  
  3363.     return xmlDoc;
  3364.   }
  3365.  
  3366.   this._collectComputerSystemInfo = function()
  3367.   {
  3368.     var fc = new Enumerator(this._ExecQuery("Win32_ComputerSystem"));
  3369.  
  3370.     var xmlDoc = null, colItem = null, numItems = 0;
  3371.  
  3372.     for (; !fc.atEnd(); fc.moveNext())
  3373.       numItems++;
  3374.  
  3375.     if(numItems > 0)
  3376.     {
  3377.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  3378.  
  3379.       if(numItems > 1)
  3380.       {
  3381.         colItem = xmlDoc.createElement("Item");
  3382.         xmlDoc.appendChild(colItem);
  3383.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Computer Systems");
  3384.       }
  3385.  
  3386.       var i = 1;
  3387.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  3388.       {
  3389.         var Obj = fc.item();
  3390.  
  3391.         var root, num = "";
  3392.         if(colItem)
  3393.         {
  3394.           root = xmlDoc.createElement("Element");
  3395.           num = " " + String(i);
  3396.         }
  3397.         else
  3398.         {
  3399.           root = xmlDoc.createElement("Item");
  3400.         }
  3401.  
  3402.         this._xmlSetAttribute(xmlDoc, root, "name", "Computer System" + num);
  3403.         if(colItem)
  3404.         {
  3405.           colItem.appendChild(root);
  3406.         }
  3407.         else
  3408.         {
  3409.           xmlDoc.appendChild(root);
  3410.         }
  3411.  
  3412.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "BootupState", Obj.BootupState, "name", "Bootup state");
  3413.  
  3414.         this._xmlCreateChildTextNode(xmlDoc, root, "Domain", Obj.Domain);
  3415.  
  3416.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DomainRole", this._translate_domain_role(Obj.DomainRole), "name", "Role of this computer in a domain");
  3417.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "InfraredSupported", Obj.InfraredSupported, "name", "IR port exists on this computer");
  3418.  
  3419.         this._xmlCreateChildTextNode(xmlDoc, root, "Manufacturer", Obj.Manufacturer);
  3420.         this._xmlCreateChildTextNode(xmlDoc, root, "Model", Obj.Model);
  3421.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  3422.  
  3423.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "NumberOfProcessors", Obj.NumberOfProcessors, "name", "Number of processors");
  3424.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PowerManagementSupported", Obj.PowerManagementSupported, "name", "Computer can be power-managed");
  3425.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PowerState", this._translate_power_state(Obj.PowerState), "name", "Current power state of a computer and its associated operating system");
  3426.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "PowerSupplyState", this._translate_power_supply_state(Obj.PowerSupplyState), "name", "State of the power supply or supplies when last booted");
  3427.  
  3428.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  3429.  
  3430.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SystemType", Obj.SystemType, "name", "Computer architecture");
  3431.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ThermalState", this._translate_power_supply_state(Obj.ThermalState), "name", "Thermal state of the system when last booted");
  3432.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "TotalPhysicalMemory", Obj.TotalPhysicalMemory, "name", "Ammount of physical memory installed, bytes");
  3433.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "UserName", Obj.UserName, "name", "User currently logged on");
  3434.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "WakeUpType", this._translate_wake_up(Obj.WakeUpType), "name", "Event that causes the system to power up");
  3435.  
  3436.         i++;
  3437.       }
  3438.     }
  3439.  
  3440.     return xmlDoc;
  3441.   }
  3442.  
  3443.   this._collectOsInfo = function()
  3444.   {
  3445.     var fc = new Enumerator(this._ExecQuery("Win32_OperatingSystem"));
  3446.  
  3447.     var xmlDoc = null, colItem = null, numItems = 0;
  3448.  
  3449.     for (; !fc.atEnd(); fc.moveNext())
  3450.       numItems++;
  3451.  
  3452.     if(numItems > 0)
  3453.     {
  3454.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  3455.  
  3456.       if(numItems > 1)
  3457.       {
  3458.         colItem = xmlDoc.createElement("Item");
  3459.         xmlDoc.appendChild(colItem);
  3460.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Operating Systems");
  3461.       }
  3462.  
  3463.       var i = 1;
  3464.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  3465.       {
  3466.         var Obj = fc.item();
  3467.  
  3468.         var root, num = "";
  3469.         if(colItem)
  3470.         {
  3471.           root = xmlDoc.createElement("Element");
  3472.           num = " " + String(i);
  3473.         }
  3474.         else
  3475.         {
  3476.           root = xmlDoc.createElement("Item");
  3477.         }
  3478.  
  3479.         this._xmlSetAttribute(xmlDoc, root, "name", "Operating System" + num);
  3480.         if(colItem)
  3481.         {
  3482.           colItem.appendChild(root);
  3483.         }
  3484.         else
  3485.         {
  3486.           xmlDoc.appendChild(root);
  3487.         }
  3488.  
  3489.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "BootDevice", Obj.BootDevice, "name", "Name of the disk drive from which this OS boots");
  3490.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "BuildNumber", Obj.BuildNumber, "name", "Build number");
  3491.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "BuildType", Obj.BuildType, "name", "Type of build used for this operating system");
  3492.  
  3493.         this._xmlCreateChildTextNode(xmlDoc, root, "Caption", Obj.Caption);
  3494.  
  3495.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "CodeSet", Obj.CodeSet, "name", "Code page value in use");
  3496.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "CountryCode", Obj.CountryCode, "name", "Code for the country/region in use");
  3497.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "CurrentTimeZone", Obj.CurrentTimeZone, "name", "Number of minutes the operating system is offset from GMT");
  3498.  
  3499.         this._xmlCreateChildTextNode(xmlDoc, root, "Distributed", Obj.Distributed);
  3500.  
  3501.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ForegroundApplicationBoost", this._translate_application_boost(Obj.ForegroundApplicationBoost), "name", "Increase in priority given to the foreground application");
  3502.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "FreePhysicalMemory", Obj.FreePhysicalMemory, "name", "Physical memory available, kilobytes");
  3503.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "FreeVirtualMemory", Obj.FreeVirtualMemory, "name", "Virtual memory  available, kilobytes");
  3504.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "LastBootUpTime", this._translate_date(Obj.LastBootUpTime), "name", "Date/time when the operating system was last booted");
  3505.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "LocalDateTime", this._translate_date(Obj.LocalDateTime), "name", "Operating system's version of the local date and time of day (valid in the moment of query)");
  3506.  
  3507.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Locale", Obj.Locale, "name", "Language identifier in use");
  3508.         this._xmlCreateChildTextNode(xmlDoc, root, "Manufacturer", Obj.Manufacturer);
  3509.  
  3510.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "MaxNumberOfProcesses", (Obj.MaxNumberOfProcesses == -1 ? "Unlimited" : Obj.MaxNumberOfProcesses), "name", "Maximum number of processes the operating system can support");
  3511.  
  3512.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  3513.  
  3514.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "NumberOfLicensedUsers", (Obj.NumberOfLicensedUsers == 0 ? "Unlimited" : Obj.NumberOfLicensedUsers), "name", "Number of user licenses");
  3515.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "NumberOfProcesses", Obj.NumberOfProcesses, "name", "Number of processes currently running");
  3516.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "NumberOfUsers", Obj.NumberOfUsers, "name", "Current number of user sessions");
  3517.  
  3518.         this._xmlCreateChildTextNode(xmlDoc, root, "Organization", Obj.Organization);
  3519.  
  3520.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "OSLanguage", this._translate_language_of_os(Obj.OSLanguage), "name", "Language version");
  3521.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "OSType", this._translate_type_of_os(Obj.OSType), "name", "Type of operating system");
  3522.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "RegisteredUser", Obj.RegisteredUser, "name", "Name of the registered user");
  3523.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SerialNumber", Obj.SerialNumber, "name", "Serial identification number");
  3524.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ServicePackMajorVersion", Obj.ServicePackMajorVersion, "name", "Service pack installed, major version number");
  3525.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ServicePackMinorVersion", Obj.ServicePackMinorVersion, "name", "Service pack installed, minor version number");
  3526.  
  3527.         this._xmlCreateChildTextNode(xmlDoc, root, "Status", Obj.Status);
  3528.  
  3529.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SystemDevice", Obj.SystemDevice, "name", "Physical disk partition on which the OS is installed");
  3530.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SystemDirectory", Obj.SystemDirectory, "name", "System directory");
  3531.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Version", Obj.Version, "name", "Version number");
  3532.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "WindowsDirectory", Obj.WindowsDirectory, "name", "Windows directory");
  3533.  
  3534.         if(Obj.OSProductSuite != null)
  3535.         {
  3536.           var suite_node = this._xmlCreateChildNodeWithAttribute(xmlDoc, root, "OSProductSuite", "name", "Installed and licensed system product additions");
  3537.  
  3538.           if(Obj.OSProductSuite & 0x1) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, suite_node, "Suite1", "installed", "name", "Small Business");
  3539.           if(Obj.OSProductSuite & 0x2) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, suite_node, "Suite2", "installed", "name", "Enterprise");
  3540.           if(Obj.OSProductSuite & 0x4) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, suite_node, "Suite3", "installed", "name", "BackOffice");
  3541.           if(Obj.OSProductSuite & 0x8) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, suite_node, "Suite4", "installed", "name", "Communication Server");
  3542.           if(Obj.OSProductSuite & 0x10) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, suite_node, "Suite5", "installed", "name", "Terminal Server");
  3543.           if(Obj.OSProductSuite & 0x20) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, suite_node, "Suite6", "installed", "name", "Small Business (Restricted)");
  3544.           if(Obj.OSProductSuite & 0x40) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, suite_node, "Suite7", "installed", "name", "Embedded NT");
  3545.           if(Obj.OSProductSuite & 0x80) this._xmlCreateChildTextNodeWithAttribute(xmlDoc, suite_node, "Suite8", "installed", "name", "Data Center");
  3546.         }
  3547.  
  3548.         i++;
  3549.       }
  3550.     }
  3551.  
  3552.     return xmlDoc;
  3553.   }
  3554.  
  3555.   this._collectOSRecoveryInfo = function()
  3556.   {
  3557.     var fc = new Enumerator(this._ExecQuery("Win32_OSRecoveryConfiguration"));
  3558.  
  3559.     var xmlDoc = null, colItem = null, numItems = 0;
  3560.  
  3561.     for (; !fc.atEnd(); fc.moveNext())
  3562.       numItems++;
  3563.  
  3564.     if(numItems > 0)
  3565.     {
  3566.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  3567.  
  3568.       if(numItems > 1)
  3569.       {
  3570.         colItem = xmlDoc.createElement("Item");
  3571.         xmlDoc.appendChild(colItem);
  3572.         this._xmlSetAttribute(xmlDoc, colItem, "name", "OS Recovery Configurations");
  3573.       }
  3574.  
  3575.       var i = 1;
  3576.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  3577.       {
  3578.         var Obj = fc.item();
  3579.  
  3580.         var root, num = "";
  3581.         if(colItem)
  3582.         {
  3583.           root = xmlDoc.createElement("Element");
  3584.           num = " " + String(i);
  3585.         }
  3586.         else
  3587.         {
  3588.           root = xmlDoc.createElement("Item");
  3589.         }
  3590.  
  3591.         this._xmlSetAttribute(xmlDoc, root, "name", "OS Recovery Configuration" + num);
  3592.         if(colItem)
  3593.         {
  3594.           colItem.appendChild(root);
  3595.         }
  3596.         else
  3597.         {
  3598.           xmlDoc.appendChild(root);
  3599.         }
  3600.  
  3601.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "AutoReboot", Obj.AutoReboot, "name", "Automatically reboot during a recovery operation");
  3602.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DebugFilePath", Obj.DebugFilePath, "name", "Full path to the debug file");
  3603.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DebugInfoType", this._translate_debug_info_type(Obj.DebugInfoType), "name", "Type of debugging information written to the log file");
  3604.         this._xmlCreateChildTextNode(xmlDoc, root, "Description", Obj.Description);
  3605.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  3606.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "OverwriteExistingDebugFile", Obj.OverwriteExistingDebugFile, "name", "New log file will overwrite an existing one");
  3607.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SendAdminAlert", Obj.SendAdminAlert, "name", "Alert message will be sent to the system administrator");
  3608.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SettingID", Obj.SettingID, "name", "Seting ID");
  3609.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "WriteDebugInfo", Obj.WriteDebugInfo, "name", "Debugging information is to be written to a log file");
  3610.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "WriteToSystemLog", Obj.WriteToSystemLog, "name", "Events will be written to a system log");
  3611.  
  3612.         i++;
  3613.       }
  3614.     }
  3615.  
  3616.     return xmlDoc;
  3617.   }
  3618.  
  3619.   this._collectOSBootInfo = function()
  3620.   {
  3621.     var fc = new Enumerator(this._ExecQuery("Win32_BootConfiguration"));
  3622.  
  3623.     var xmlDoc = null, colItem = null, numItems = 0;
  3624.  
  3625.     for (; !fc.atEnd(); fc.moveNext())
  3626.       numItems++;
  3627.  
  3628.     if(numItems > 0)
  3629.     {
  3630.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  3631.  
  3632.       if(numItems > 1)
  3633.       {
  3634.         colItem = xmlDoc.createElement("Item");
  3635.         xmlDoc.appendChild(colItem);
  3636.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Boot Configurations");
  3637.       }
  3638.  
  3639.       var i = 1;
  3640.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  3641.       {
  3642.         var Obj = fc.item();
  3643.  
  3644.         var root, num = "";
  3645.         if(colItem)
  3646.         {
  3647.           root = xmlDoc.createElement("Element");
  3648.           num = " " + String(i);
  3649.         }
  3650.         else
  3651.         {
  3652.           root = xmlDoc.createElement("Item");
  3653.         }
  3654.  
  3655.         this._xmlSetAttribute(xmlDoc, root, "name", "Boot Configuration" + num);
  3656.         if(colItem)
  3657.         {
  3658.           colItem.appendChild(root);
  3659.         }
  3660.         else
  3661.         {
  3662.           xmlDoc.appendChild(root);
  3663.         }
  3664.  
  3665.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "BootDirectory", Obj.BootDirectory, "name", "Path to the system files required for booting the system");
  3666.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ConfigurationPath", Obj.ConfigurationPath, "name", "Path to the configuration files");
  3667.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Name", Obj.Name, "name", "Name of this configuration");
  3668.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ScratchDirectory", Obj.ScratchDirectory, "name", "Directory where temporary files can reside during boot time");
  3669.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "SettingID", Obj.SettingID, "name", "Setting ID");
  3670.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "TempDirectory", Obj.TempDirectory, "name", "Directory where temporary files are stored");
  3671.  
  3672.         i++;
  3673.       }
  3674.     }
  3675.  
  3676.     return xmlDoc;
  3677.   }
  3678.  
  3679.   this._collectQFEInfo = function()
  3680.   {
  3681.     var fc = new Enumerator(this._ExecQuery("Win32_QuickFixEngineering"));
  3682.  
  3683.     var xmlDoc = null, colItem = null, numItems = 0;
  3684.  
  3685.     for (; !fc.atEnd(); fc.moveNext())
  3686.       numItems++;
  3687.  
  3688.     if(numItems > 0)
  3689.     {
  3690.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  3691.  
  3692.       if(numItems > 1)
  3693.       {
  3694.         colItem = xmlDoc.createElement("Item");
  3695.         xmlDoc.appendChild(colItem);
  3696.         this._xmlSetAttribute(xmlDoc, colItem, "name", "QuickFixEngineering Packs");
  3697.       }
  3698.  
  3699.       var i = 1;
  3700.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  3701.       {
  3702.         var Obj = fc.item();
  3703.  
  3704.         var root, num = "";
  3705.         if(colItem)
  3706.         {
  3707.           root = xmlDoc.createElement("Element");
  3708.           num = " " + String(i);
  3709.         }
  3710.         else
  3711.         {
  3712.           root = xmlDoc.createElement("Item");
  3713.         }
  3714.  
  3715.         this._xmlSetAttribute(xmlDoc, root, "name", "QFE Pack" + num);
  3716.         if(colItem)
  3717.         {
  3718.           colItem.appendChild(root);
  3719.         }
  3720.         else
  3721.         {
  3722.           xmlDoc.appendChild(root);
  3723.         }
  3724.  
  3725.         this._xmlCreateChildTextNode(xmlDoc, root, "Description", Obj.Description);
  3726.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "FixComments", Obj.FixComments, "name", "Comments");
  3727.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "HotFixID", Obj.HotFixID, "name", "Hotfix ID");
  3728.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "InstallDate", this._translate_date(Obj.InstallDate), "name", "Date when hotfix was installed");
  3729.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "InstalledBy", Obj.InstalledBy, "name", "Person who installed the update");
  3730.         this._xmlCreateChildTextNode(xmlDoc, root, "Name", Obj.Name);
  3731.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ServicePackInEffect", Obj.ServicePackInEffect, "name", "Service pack in effect when the update was applied");
  3732.  
  3733.         i++;
  3734.       }
  3735.     }
  3736.  
  3737.     return xmlDoc;
  3738.   }
  3739.  
  3740.   this._collectODBCDataSourceInfo = function()
  3741.   {
  3742.     var fc = new Enumerator(this._ExecQuery("Win32_ODBCDataSourceSpecification"));
  3743.  
  3744.     var xmlDoc = null, colItem = null, numItems = 0;
  3745.  
  3746.     for (; !fc.atEnd(); fc.moveNext())
  3747.       numItems++;
  3748.  
  3749.     if(numItems > 0)
  3750.     {
  3751.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  3752.  
  3753.       if(numItems > 1)
  3754.       {
  3755.         colItem = xmlDoc.createElement("Item");
  3756.         xmlDoc.appendChild(colItem);
  3757.         this._xmlSetAttribute(xmlDoc, colItem, "name", "ODBC Data Sources");
  3758.       }
  3759.  
  3760.       var i = 1;
  3761.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  3762.       {
  3763.         var Obj = fc.item();
  3764.  
  3765.         var root, num = "";
  3766.         if(colItem)
  3767.         {
  3768.           root = xmlDoc.createElement("Element");
  3769.           num = " " + String(i);
  3770.         }
  3771.         else
  3772.         {
  3773.           root = xmlDoc.createElement("Item");
  3774.         }
  3775.  
  3776.         this._xmlSetAttribute(xmlDoc, root, "name", "ODBC Data Source" + num);
  3777.         if(colItem)
  3778.         {
  3779.           colItem.appendChild(root);
  3780.         }
  3781.         else
  3782.         {
  3783.           xmlDoc.appendChild(root);
  3784.         }
  3785.  
  3786.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "CheckID", Obj.CheckID, "name", "Unique data source identifier");
  3787.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DataSource", Obj.DataSource, "name", "Token name for this data source");
  3788.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "DriverDescription", Obj.DriverDescription, "name", "Name of associated ODBC driver");
  3789.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Registration", this._translate_odbc_registraton(Obj.Registration), "name", "Type of registration");
  3790.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Version", Obj.Version, "name", "Version");
  3791.  
  3792.         i++;
  3793.       }
  3794.     }
  3795.  
  3796.     return xmlDoc;
  3797.   }
  3798.  
  3799.   this._collectODBCDriverInfo = function()
  3800.   {
  3801.     var fc = new Enumerator(this._ExecQuery("Win32_ODBCDriverSpecification"));
  3802.  
  3803.     var xmlDoc = null, colItem = null, numItems = 0;
  3804.  
  3805.     for (; !fc.atEnd(); fc.moveNext())
  3806.       numItems++;
  3807.  
  3808.     if(numItems > 0)
  3809.     {
  3810.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  3811.  
  3812.       if(numItems > 1)
  3813.       {
  3814.         colItem = xmlDoc.createElement("Item");
  3815.         xmlDoc.appendChild(colItem);
  3816.         this._xmlSetAttribute(xmlDoc, colItem, "name", "ODBC Drivers");
  3817.       }
  3818.  
  3819.       var i = 1;
  3820.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  3821.       {
  3822.         var Obj = fc.item();
  3823.  
  3824.         var root, num = "";
  3825.         if(colItem)
  3826.         {
  3827.           root = xmlDoc.createElement("Element");
  3828.           num = " " + String(i);
  3829.         }
  3830.         else
  3831.         {
  3832.           root = xmlDoc.createElement("Item");
  3833.         }
  3834.  
  3835.         this._xmlSetAttribute(xmlDoc, root, "name", "ODBC Driver" + num);
  3836.         if(colItem)
  3837.         {
  3838.           colItem.appendChild(root);
  3839.         }
  3840.         else
  3841.         {
  3842.           xmlDoc.appendChild(root);
  3843.         }
  3844.  
  3845.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "CheckID", Obj.CheckID, "name", "Unique driver identifier");
  3846.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Driver", Obj.Driver, "name", "Token name for this driver");
  3847.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Version", Obj.Version, "name", "Version");
  3848.  
  3849.         i++;
  3850.       }
  3851.     }
  3852.  
  3853.     return xmlDoc;
  3854.   }
  3855.  
  3856.   this._collectODBCTranslatorInfo = function()
  3857.   {
  3858.     var fc = new Enumerator(this._ExecQuery("Win32_ODBCTranslatorSpecification"));
  3859.  
  3860.     var xmlDoc = null, colItem = null, numItems = 0;
  3861.  
  3862.     for (; !fc.atEnd(); fc.moveNext())
  3863.       numItems++;
  3864.  
  3865.     if(numItems > 0)
  3866.     {
  3867.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  3868.  
  3869.       if(numItems > 1)
  3870.       {
  3871.         colItem = xmlDoc.createElement("Item");
  3872.         xmlDoc.appendChild(colItem);
  3873.         this._xmlSetAttribute(xmlDoc, colItem, "name", "ODBC Translators");
  3874.       }
  3875.  
  3876.       var i = 1;
  3877.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  3878.       {
  3879.         var Obj = fc.item();
  3880.  
  3881.         var root, num = "";
  3882.         if(colItem)
  3883.         {
  3884.           root = xmlDoc.createElement("Element");
  3885.           num = " " + String(i);
  3886.         }
  3887.         else
  3888.         {
  3889.           root = xmlDoc.createElement("Item");
  3890.         }
  3891.  
  3892.         this._xmlSetAttribute(xmlDoc, root, "name", "ODBC Translator" + num);
  3893.         if(colItem)
  3894.         {
  3895.           colItem.appendChild(root);
  3896.         }
  3897.         else
  3898.         {
  3899.           xmlDoc.appendChild(root);
  3900.         }
  3901.  
  3902.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "CheckID", Obj.CheckID, "name", "Unique translator identifier");
  3903.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Translator", Obj.Translator, "name", "Token name for this translator");
  3904.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "Version", Obj.Version, "name", "Version");
  3905.  
  3906.         i++;
  3907.       }
  3908.     }
  3909.  
  3910.     return xmlDoc;
  3911.   }
  3912.  
  3913.   this._collectPingData = function(ip)
  3914.   {
  3915.     var local_service = GetObject("winmgmts:{impersonationLevel=impersonate}!root/cimv2")
  3916.  
  3917.     // WinXP/2003Server only!
  3918.     var fc = new Enumerator(local_service.ExecQuery("Select * from Win32_PingStatus where Address = '" + ip + "'"));
  3919.  
  3920.     var xmlDoc = null, colItem = null, numItems = 0;
  3921.  
  3922.     for (; !fc.atEnd(); fc.moveNext())
  3923.       numItems++;
  3924.  
  3925.     if(numItems > 0)
  3926.     {
  3927.       xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
  3928.  
  3929.       if(numItems > 1)
  3930.       {
  3931.         colItem = xmlDoc.createElement("Item");
  3932.         xmlDoc.appendChild(colItem);
  3933.         this._xmlSetAttribute(xmlDoc, colItem, "name", "Ping Data Sets");
  3934.       }
  3935.  
  3936.       var i = 1;
  3937.       for (fc.moveFirst(); !fc.atEnd(); fc.moveNext())
  3938.       {
  3939.         var Obj = fc.item();
  3940.  
  3941.         var root, num = "";
  3942.         if(colItem)
  3943.         {
  3944.           root = xmlDoc.createElement("Element");
  3945.           num = " " + String(i);
  3946.         }
  3947.         else
  3948.         {
  3949.           root = xmlDoc.createElement("Item");
  3950.         }
  3951.  
  3952.         this._xmlSetAttribute(xmlDoc, root, "name", "Ping Data" + num);
  3953.         if(colItem)
  3954.         {
  3955.           colItem.appendChild(root);
  3956.         }
  3957.         else
  3958.         {
  3959.           xmlDoc.appendChild(root);
  3960.         }
  3961.  
  3962.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "ResponseTime", Obj.ResponseTime, "name", "Response time");
  3963.         this._xmlCreateChildTextNodeWithAttribute(xmlDoc, root, "StatusCode", Obj.StatusCode, "name", "Status code returned");
  3964.  
  3965.         i++;
  3966.       }
  3967.     }
  3968.  
  3969.     return xmlDoc;
  3970.   }
  3971.  
  3972.   // Code translation routines:
  3973.  
  3974.   this._translate_date = function(date_code)
  3975.   {
  3976.     var date_str = String(date_code);
  3977.  
  3978.     if(this._isempty(date_str)) return "";
  3979.  
  3980.     var any_numbers = false;
  3981.     for(var i = 0; i < date_str.length; i++)
  3982.     {
  3983.       if(!isNaN(parseInt(date_str.charAt(i))))
  3984.       {
  3985.         any_numbers = true;
  3986.         break;
  3987.       }
  3988.     }
  3989.  
  3990.     if(!any_numbers) return "";
  3991.  
  3992.     return date_str.substring(4, 6)+"/"+date_str.substring(6, 8)+"/"+date_str.substring(0, 4)+", "+date_str.substring(8, 10)+":"+date_str.substring(10, 12)+":"+date_str.substring(12, 14);
  3993.   }
  3994.  
  3995.   this._translate_availability = function(code)
  3996.   {
  3997.     if(this._isempty(code)) return "";
  3998.  
  3999.     switch(code)
  4000.     {
  4001.       case 2: return "Unknown (" + String(code) + ")"; break;
  4002.       case 3: return "Running / Full Power"; break;
  4003.       case 4: return "Warning"; break;
  4004.       case 5: return "In Test"; break;
  4005.       case 6: return "Not Applicable"; break;
  4006.       case 7: return "Power Off"; break;
  4007.       case 8: return "Off Line"; break;
  4008.       case 9: return "Off Duty"; break;
  4009.       case 10: return "Degraded"; break;
  4010.       case 11: return "Not Installed"; break;
  4011.       case 12: return "Install Error"; break;
  4012.       case 13: return "Power Save - Unknown"; break;
  4013.       case 14: return "Power Save - Low Power Mode"; break;
  4014.       case 15: return "Power Save - Standby"; break;
  4015.       case 16: return "Power Cycle"; break;
  4016.       case 17: return "Power Save - Warning"; break;
  4017.       default: return "Other (" + String(code) + ")"; break;
  4018.     }
  4019.   }
  4020.  
  4021.   this._translate_bios_feats = function(code)
  4022.   {
  4023.     if(this._isempty(code)) return "";
  4024.  
  4025.     switch(code)
  4026.     {
  4027.       case 2: return "Unknown (" + String(code) + ")"; break;
  4028.       case 3: return "BIOS Characteristics Not Supported"; break;
  4029.       case 4: return "ISA is supported"; break;
  4030.       case 5: return "MCA is supported"; break;
  4031.       case 6: return "EISA is supported"; break;
  4032.       case 7: return "PCI is supported"; break;
  4033.       case 8: return "PC Card (PCMCIA) is supported"; break;
  4034.       case 9: return "Plug and Play is supported"; break;
  4035.       case 10: return "APM is supported"; break;
  4036.       case 11: return "BIOS is Upgradable (Flash)"; break;
  4037.       case 12: return "BIOS shadowing is allowed"; break;
  4038.       case 13: return "VL-VESA is supported"; break;
  4039.       case 14: return "ESCD support is available"; break;
  4040.       case 15: return "Boot from CD is supported"; break;
  4041.       case 16: return "Selectable Boot is supported"; break;
  4042.       case 17: return "BIOS ROM is socketed"; break;
  4043.       case 18: return "Boot From PC Card (PCMCIA) is supported"; break;
  4044.       case 19: return "EDD (Enhanced Disk Drive) Specification is supported"; break;
  4045.       case 20: return "Int 13h - Japanese Floppy for NEC 9800 1.2mb (3.5, 1k Bytes/Sector, 360 RPM) is supported"; break;
  4046.       case 21: return "Int 13h - Japanese Floppy for Toshiba 1.2mb (3.5, 360 RPM) is supported"; break;
  4047.       case 22: return "Int 13h - 5.25 / 360 KB Floppy Services are supported"; break;
  4048.       case 23: return "Int 13h - 5.25 /1.2MB Floppy Services are supported"; break;
  4049.       case 24: return "Int 13h - 3.5 / 720 KB Floppy Services are supported"; break;
  4050.       case 25: return "Int 13h - 3.5 / 2.88 MB Floppy Services are supported"; break;
  4051.       case 26: return "Int 5h, Print Screen Service is supported"; break;
  4052.       case 27: return "Int 9h, 8042 Keyboard services are supported"; break;
  4053.       case 28: return "Int 14h, Serial Services are supported"; break;
  4054.       case 29: return "Int 17h, printer services are supported"; break;
  4055.       case 30: return "Int 10h, CGA/Mono Video Services are supported"; break;
  4056.       case 31: return "NEC PC-98"; break;
  4057.       case 32: return "ACPI supported"; break;
  4058.       case 33: return "USB Legacy is supported"; break;
  4059.       case 34: return "AGP is supported"; break;
  4060.       case 35: return "I2O boot is supported"; break;
  4061.       case 36: return "LS-120 boot is supported"; break;
  4062.       case 37: return "ATAPI ZIP Drive boot is supported"; break;
  4063.       case 38: return "1394 boot is supported"; break;
  4064.       case 39: return "Smart Battery supported"; break;
  4065.       default: return "Reserved (" + String(code) + ")"; break;
  4066.     }
  4067.   }
  4068.  
  4069.   this._translate_processor_architecture = function(code)
  4070.   {
  4071.     if(this._isempty(code)) return "";
  4072.  
  4073.     switch(code)
  4074.     {
  4075.       case 0: return "x86"; break;
  4076.       case 1: return "MIPS"; break;
  4077.       case 2: return "Alpha"; break;
  4078.       case 3: return "PowerPC"; break;
  4079.       case 6: return "Intel Itanium Processor Family"; break;
  4080.       case 9: return "x64"; break;
  4081.       default: return "Other (" + String(code) + ")"; break;
  4082.     }
  4083.   }
  4084.  
  4085.   this._translate_processor_status = function(code)
  4086.   {
  4087.     if(this._isempty(code)) return "";
  4088.  
  4089.     switch(code)
  4090.     {
  4091.       case 1: return "CPU Enabled"; break;
  4092.       case 2: return "CPU Disabled by User via BIOS Setup"; break;
  4093.       case 3: return "CPU Disabled By BIOS (POST Error)"; break;
  4094.       case 4: return "CPU is Idle"; break;
  4095.       case 5:
  4096.       case 6: return "Reserved (" + String(code) + ")"; break;
  4097.       case 7: return "Other (" + String(code) + ")"; break;
  4098.       default: return "Unknown (" + String(code) + ")"; break;
  4099.     }
  4100.   }
  4101.  
  4102.   this._translate_processor_family = function(code)
  4103.   {
  4104.     if(this._isempty(code)) return "";
  4105.  
  4106.     switch(code)
  4107.     {
  4108.       case 2: return "Unknown (" + String(code) + ")"; break;
  4109.       case 3: return "8086"; break;
  4110.       case 4: return "80286"; break;
  4111.       case 5: return "Intel386 processor"; break;
  4112.       case 6: return "Intel486 processor"; break;
  4113.       case 7: return "8087"; break;
  4114.       case 8: return "80287"; break;
  4115.       case 9: return "80387"; break;
  4116.       case 10: return "80487"; break;
  4117.       case 11: return "Pentium brand"; break;
  4118.       case 12: return "Pentium Pro"; break;
  4119.       case 13: return "Pentium II"; break;
  4120.       case 14: return "Pentium MMX"; break;
  4121.       case 15: return "Celeron"; break;
  4122.       case 16: return "Pentium II Xeon"; break;
  4123.       case 17: return "Pentium III"; break;
  4124.       case 18: return "M1 Family"; break;
  4125.       case 19: return "M2 Family"; break;
  4126.       case 24: return "AMD Duron Processor Family"; break;
  4127.       case 25: return "K5 Family"; break;
  4128.       case 26: return "K6 Family"; break;
  4129.       case 27: return "K6-2"; break;
  4130.       case 28: return "K6-3"; break;
  4131.       case 29: return "AMD Athlon Processor Family"; break;
  4132.       case 30: return "AMD2900 Family"; break;
  4133.       case 31: return "K6-2+"; break;
  4134.       case 32: return "Power PC Family"; break;
  4135.       case 33: return "Power PC 601"; break;
  4136.       case 34: return "Power PC 603"; break;
  4137.       case 35: return "Power PC 603+"; break;
  4138.       case 36: return "Power PC 604"; break;
  4139.       case 37: return "Power PC 620"; break;
  4140.       case 38: return "Power PC X704"; break;
  4141.       case 39: return "Power PC 750"; break;
  4142.       case 48: return "Alpha Family"; break;
  4143.       case 49: return "Alpha 21064"; break;
  4144.       case 50: return "Alpha 21066"; break;
  4145.       case 51: return "Alpha 21164"; break;
  4146.       case 52: return "Alpha 21164PC"; break;
  4147.       case 53: return "Alpha 21164a"; break;
  4148.       case 54: return "Alpha 21264"; break;
  4149.       case 55: return "Alpha 21364"; break;
  4150.       case 64: return "MIPS Family"; break;
  4151.       case 65: return "MIPS R4000"; break;
  4152.       case 66: return "MIPS R4200"; break;
  4153.       case 67: return "MIPS R4400"; break;
  4154.       case 68: return "MIPS R4600"; break;
  4155.       case 69: return "MIPS R10000"; break;
  4156.       case 80: return "SPARC Family"; break;
  4157.       case 81: return "SuperSPARC"; break;
  4158.       case 82: return "microSPARC II"; break;
  4159.       case 83: return "microSPARC IIep"; break;
  4160.       case 84: return "UltraSPARC"; break;
  4161.       case 85: return "UltraSPARC II"; break;
  4162.       case 86: return "UltraSPARC IIi"; break;
  4163.       case 87: return "UltraSPARC III"; break;
  4164.       case 88: return "UltraSPARC IIIi"; break;
  4165.       case 96: return "68040"; break;
  4166.       case 97: return "68xxx Family"; break;
  4167.       case 98: return "68000"; break;
  4168.       case 99: return "68010"; break;
  4169.       case 100: return "68020"; break;
  4170.       case 101: return "68030"; break;
  4171.       case 112: return "Hobbit Family"; break;
  4172.       case 120: return "Crusoe TM5000 Family"; break;
  4173.       case 121: return "Crusoe TM3000 Family"; break;
  4174.       case 122: return "Efficeon TM8000 Family"; break;
  4175.       case 128: return "Weitek"; break;
  4176.       case 130: return "Itanium Processor"; break;
  4177.       case 131: return "AMD Athlon 64 Processor Famiily"; break;
  4178.       case 132: return "AMD Opteron Processor Family"; break;
  4179.       case 144: return "PA-RISC Family"; break;
  4180.       case 145: return "PA-RISC 8500"; break;
  4181.       case 146: return "PA-RISC 8000"; break;
  4182.       case 147: return "PA-RISC 7300LC"; break;
  4183.       case 148: return "PA-RISC 7200"; break;
  4184.       case 149: return "PA-RISC 7100LC"; break;
  4185.       case 150: return "PA-RISC 7100"; break;
  4186.       case 160: return "V30 Family"; break;
  4187.       case 176: return "Pentium III Xeon processor"; break;
  4188.       case 177: return "Pentium III Processor with Intel SpeedStep Technology"; break;
  4189.       case 178: return "Pentium 4"; break;
  4190.       case 179: return "Intel Xeon"; break;
  4191.       case 180: return "AS400 Family"; break;
  4192.       case 181: return "Intel Xeon processor MP"; break;
  4193.       case 182: return "AMD Athlon XP Family"; break;
  4194.       case 183: return "AMD Athlon MP Family"; break;
  4195.       case 184: return "Intel Itanium 2"; break;
  4196.       case 185: return "Intel Pentium M Processor"; break;
  4197.       case 190: return "K7"; break;
  4198.       case 200: return "IBM390 Family"; break;
  4199.       case 201: return "G4"; break;
  4200.       case 202: return "G5"; break;
  4201.       case 203: return "G6"; break;
  4202.       case 204: return "z/Architecture base"; break;
  4203.       case 250: return "i860"; break;
  4204.       case 251: return "i960"; break;
  4205.       case 260: return "SH-3"; break;
  4206.       case 261: return "SH-4"; break;
  4207.       case 280: return "ARM"; break;
  4208.       case 281: return "StrongARM"; break;
  4209.       case 300: return "6x86"; break;
  4210.       case 301: return "MediaGX"; break;
  4211.       case 302: return "MII"; break;
  4212.       case 320: return "WinChip"; break;
  4213.       case 350: return "DSP"; break;
  4214.       case 500: return "Video Processor"; break;
  4215.       default: return "Other (" + String(code) + ")"; break;
  4216.     }
  4217.   }
  4218.  
  4219.   this._translate_processor_type = function(code)
  4220.   {
  4221.     if(this._isempty(code)) return "";
  4222.  
  4223.     switch(code)
  4224.     {
  4225.       case 2: return "Unknown (" + String(code) + ")"; break;
  4226.       case 3: return "Central Processor"; break;
  4227.       case 4: return "Math Processor"; break;
  4228.       case 5: return "DSP Processor"; break;
  4229.       case 6: return "Video Processor"; break;
  4230.       default: return "Other (" + String(code) + ")"; break;
  4231.     }
  4232.   }
  4233.  
  4234.   this._translate_memory_form_factor = function(code)
  4235.   {
  4236.     if(this._isempty(code)) return "";
  4237.  
  4238.     switch(code)
  4239.     {
  4240.       case 0: return "Unknown (" + String(code) + ")"; break;
  4241.       case 2: return "SIP"; break;
  4242.       case 3: return "DIP"; break;
  4243.       case 4: return "ZIP"; break;
  4244.       case 5: return "SOJ"; break;
  4245.       case 6: return "Proprietary"; break;
  4246.       case 7: return "SIMM"; break;
  4247.       case 8: return "DIMM"; break;
  4248.       case 9: return "TSOP"; break;
  4249.       case 10: return "PGA"; break;
  4250.       case 11: return "RIMM"; break;
  4251.       case 12: return "SODIMM"; break;
  4252.       default: return "Other (" + String(code) + ")"; break;
  4253.     }
  4254.   }
  4255.  
  4256.   this._translate_memory_type = function(code)
  4257.   {
  4258.     if(this._isempty(code)) return "";
  4259.  
  4260.     switch(code)
  4261.     {
  4262.       case 0: return "Unknown (" + String(code) + ")"; break;
  4263.       case 2: return "DRAM"; break;
  4264.       case 3: return "Synchronous DRAM"; break;
  4265.       case 4: return "Cache DRAM"; break;
  4266.       case 5: return "EDO"; break;
  4267.       case 6: return "EDRAM"; break;
  4268.       case 7: return "VRAM"; break;
  4269.       case 8: return "SRAM"; break;
  4270.       case 9: return "RAM"; break;
  4271.       case 10: return "ROM"; break;
  4272.       case 11: return "Flash"; break;
  4273.       case 12: return "EEPROM"; break;
  4274.       case 13: return "FEPROM"; break;
  4275.       case 14: return "EPROM"; break;
  4276.       case 15: return "CDRAM"; break;
  4277.       case 16: return "3DRAM"; break;
  4278.       case 17: return "SDRAM"; break;
  4279.       case 18: return "SGRAM"; break;
  4280.       case 19: return "RDRAM"; break;
  4281.       case 20: return "DDR"; break;
  4282.       default: return "Other (" + String(code) + ")"; break;
  4283.     }
  4284.   }
  4285.  
  4286.   this._translate_video_memory_type = function(code)
  4287.   {
  4288.     if(this._isempty(code)) return "";
  4289.  
  4290.     switch(code)
  4291.     {
  4292.       case 2: return "Unknown (" + String(code) + ")"; break;
  4293.       case 3: return "VRAM"; break;
  4294.       case 4: return "DRAM"; break;
  4295.       case 5: return "SRAM"; break;
  4296.       case 6: return "WRAM"; break;
  4297.       case 7: return "EDO RAM"; break;
  4298.       case 8: return "Burst Synchronous DRAM"; break;
  4299.       case 9: return "Pipelined Burst SRAM"; break;
  4300.       case 10: return "CDRAM"; break;
  4301.       case 11: return "3DRAM"; break;
  4302.       case 12: return "SDRAM"; break;
  4303.       case 13: return "SGRAM"; break;
  4304.       default: return "Other (" + String(code) + ")"; break;
  4305.     }
  4306.   }
  4307.  
  4308.   this._translate_scsi_protection_management = function(code)
  4309.   {
  4310.     if(this._isempty(code)) return "";
  4311.  
  4312.     switch(code)
  4313.     {
  4314.       case 2: return "Unknown (" + String(code) + ")"; break;
  4315.       case 3: return "Unprotected"; break;
  4316.       case 4: return "Protected"; break;
  4317.       case 5: return "Protected through SCC (SCSI-3 Controller Command)"; break;
  4318.       case 6: return "Protected through SCC-2 (SCSI-3 Controller Command)"; break;
  4319.       default: return "Other (" + String(code) + ")"; break;
  4320.     }
  4321.   }
  4322.  
  4323.   this._translate_protocol_supported = function(code)
  4324.   {
  4325.     if(this._isempty(code)) return "";
  4326.  
  4327.     switch(code)
  4328.     {
  4329.       case 2: return "Unknown (" + String(code) + ")"; break;
  4330.       case 3: return "EISA"; break;
  4331.       case 4: return "ISA"; break;
  4332.       case 5: return "PCI"; break;
  4333.       case 6: return "ATA/ATAPI"; break;
  4334.       case 7: return "Flexible Diskette"; break;
  4335.       case 8: return "1496"; break;
  4336.       case 9: return "SCSI Parallel Interface"; break;
  4337.       case 10: return "SCSI Fibre Channel Protocol"; break;
  4338.       case 11: return "SCSI Serial Bus Protocol"; break;
  4339.       case 12: return "SCSI Serial Bus Protocol-2 (1394)"; break;
  4340.       case 13: return "SCSI Serial Storage Architecture"; break;
  4341.       case 14: return "VESA"; break;
  4342.       case 15: return "PCMCIA"; break;
  4343.       case 16: return "Universal Serial Bus"; break;
  4344.       case 17: return "Parallel Protocol"; break;
  4345.       case 18: return "ESCON"; break;
  4346.       case 19: return "Diagnostic"; break;
  4347.       case 20: return "I2C"; break;
  4348.       case 21: return "Power"; break;
  4349.       case 22: return "HIPPI"; break;
  4350.       case 23: return "MultiBus"; break;
  4351.       case 24: return "VME"; break;
  4352.       case 25: return "IPI"; break;
  4353.       case 26: return "IEEE-488"; break;
  4354.       case 27: return "RS232"; break;
  4355.       case 28: return "IEEE 802.3 10BASE5"; break;
  4356.       case 29: return "IEEE 802.3 10BASE2"; break;
  4357.       case 30: return "IEEE 802.3 1BASE5"; break;
  4358.       case 31: return "IEEE 802.3 10BROAD36"; break;
  4359.       case 32: return "IEEE 802.3 100BASEVG"; break;
  4360.       case 33: return "IEEE 802.5 Token-Ring"; break;
  4361.       case 34: return "ANSI X3T9.5 FDDI"; break;
  4362.       case 35: return "MCA"; break;
  4363.       case 36: return "ESDI"; break;
  4364.       case 37: return "IDE"; break;
  4365.       case 38: return "CMD"; break;
  4366.       case 39: return "ST506"; break;
  4367.       case 40: return "DSSI"; break;
  4368.       case 41: return "QIC2"; break;
  4369.       case 42: return "Enhanced ATA/IDE"; break;
  4370.       case 43: return "AGP"; break;
  4371.       case 44: return "TWIRP (two-way infrared)"; break;
  4372.       case 45: return "FIR (fast infrared)"; break;
  4373.       case 46: return "SIR (serial infrared)"; break;
  4374.       case 47: return "IrBus"; break;
  4375.       default: return "Other (" + String(code) + ")"; break;
  4376.     }
  4377.   }
  4378.  
  4379.   this._translate_net_connection_status = function(code)
  4380.   {
  4381.     if(this._isempty(code)) return "";
  4382.  
  4383.     switch(code)
  4384.     {
  4385.       case 0: return "Disconnected"; break;
  4386.       case 1: return "Connecting"; break;
  4387.       case 2: return "Connected"; break;
  4388.       case 3: return "Disconnecting"; break;
  4389.       case 4: return "Hardware not present"; break;
  4390.       case 5: return "Hardware disabled"; break;
  4391.       case 6: return "Hardware malfunction"; break;
  4392.       case 7: return "Media disconnected"; break;
  4393.       case 8: return "Authenticating"; break;
  4394.       case 9: return "Authentication succeeded"; break;
  4395.       case 10: return "Authentication failed"; break;
  4396.       default: return "Unknown (" + String(code) + ")"; break;
  4397.     }
  4398.   }
  4399.  
  4400.   this._translate_video_architecture = function(code)
  4401.   {
  4402.     if(this._isempty(code)) return "";
  4403.  
  4404.     switch(code)
  4405.     {
  4406.       case 2: return "Unknown (" + String(code) + ")"; break;
  4407.       case 3: return "CGA"; break;
  4408.       case 4: return "EGA"; break;
  4409.       case 5: return "VGA"; break;
  4410.       case 6: return "SVGA"; break;
  4411.       case 7: return "MDA"; break;
  4412.       case 8: return "HGC"; break;
  4413.       case 9: return "MCGA"; break;
  4414.       case 10: return "8514A"; break;
  4415.       case 11: return "XGA"; break;
  4416.       case 12: return "Linear Frame Buffer"; break;
  4417.       case 160: return "PC-98"; break;
  4418.       default: return "Other (" + String(code) + ")"; break;
  4419.     }
  4420.   }
  4421.  
  4422.   this._translate_mouse_interface = function(code)
  4423.   {
  4424.     if(this._isempty(code)) return "";
  4425.  
  4426.     switch(code)
  4427.     {
  4428.       case 2: return "Unknown (" + String(code) + ")"; break;
  4429.       case 3: return "Serial"; break;
  4430.       case 4: return "PS/2"; break;
  4431.       case 5: return "Infrared"; break;
  4432.       case 6: return "HP-HIL"; break;
  4433.       case 7: return "Bus mouse"; break;
  4434.       case 8: return "ADB (Apple Desktop Bus)"; break;
  4435.       case 160: return "Bus mouse DB-9"; break;
  4436.       case 161: return "Bus mouse micro-DIN"; break;
  4437.       case 162: return "USB"; break;
  4438.       default: return "Other (" + String(code) + ")"; break;
  4439.     }
  4440.   }
  4441.  
  4442.   this._translate_mouse_type = function(code)
  4443.   {
  4444.     if(this._isempty(code)) return "";
  4445.  
  4446.     switch(code)
  4447.     {
  4448.       case 2: return "Unknown (" + String(code) + ")"; break;
  4449.       case 3: return "Mouse"; break;
  4450.       case 4: return "Track Ball"; break;
  4451.       case 5: return "Track Point"; break;
  4452.       case 6: return "Glide Point"; break;
  4453.       case 7: return "Touch Pad"; break;
  4454.       case 8: return "Touch Screen"; break;
  4455.       case 9: return "Mouse - Optical Sensor"; break;
  4456.       default: return "Other (" + String(code) + ")"; break;
  4457.     }
  4458.   }
  4459.  
  4460.   this._translate_printer_status = function(code)
  4461.   {
  4462.     if(this._isempty(code)) return "";
  4463.  
  4464.     switch(code)
  4465.     {
  4466.       case 2: return "Unknown (" + String(code) + ")"; break;
  4467.       case 3: return "Idle"; break;
  4468.       case 4: return "Printing"; break;
  4469.       case 5: return "Warmup"; break;
  4470.       case 6: return "Stopped printing"; break;
  4471.       case 7: return "Offline"; break;
  4472.       default: return "Other (" + String(code) + ")"; break;
  4473.     }
  4474.   }
  4475.  
  4476.   this._translate_software_install_state = function(code)
  4477.   {
  4478.     if(this._isempty(code)) return "";
  4479.  
  4480.     switch(code)
  4481.     {
  4482.       case -6: return "Bad Configuration"; break;
  4483.       case -2: return "Invalid Argument"; break;
  4484.       case -1: return "Unknown Package"; break;
  4485.       case 1: return "Advertised"; break;
  4486.       case 2: return "Absent"; break;
  4487.       case 5: return "Installed"; break;
  4488.       default: return "Other (" + String(code) + ")"; break;
  4489.     }
  4490.   }
  4491.  
  4492.   this._translate_logon_type = function(code)
  4493.   {
  4494.     if(this._isempty(code)) return "";
  4495.  
  4496.     switch(code)
  4497.     {
  4498.       case 2:
  4499.       case "Interactive":
  4500.         return "Interactive user logon (incl. terminal server/remote shell sessions)"; break;
  4501.  
  4502.       case 3:
  4503.       case "Network":
  4504.         return "Used by high performance servers to authenticate clear text passwords"; break;
  4505.  
  4506.       case 4:
  4507.       case "Batch":
  4508.         return "Batch server/high performance (mail or web) server logon"; break;
  4509.  
  4510.       case 5:
  4511.       case "Service":
  4512.         return "Service-type logon"; break;
  4513.  
  4514.       case 6:
  4515.       case "Proxy":
  4516.         return "Proxy-type logon"; break;
  4517.  
  4518.       case 7:
  4519.       case "Unlock":
  4520.         return "Intended for GINA DLLs logging on users who will be interactively using the machine (audit-related)"; break;
  4521.  
  4522.       case 8:
  4523.       case "NetworkCleartext":
  4524.         return "(Windows 2000/XP/.NET Server 2003 family) Preserves the name and password in the authentication packages, allowing the server to make connections to other network servers while impersonating the client"; break;
  4525.  
  4526.       case 9:
  4527.       case "NewCredentials":
  4528.         return "(Windows 2000/XP/.NET Server 2003 family) Allows the caller to clone its current token and specify new credentials for outbound connections"; break;
  4529.  
  4530.       case 10:
  4531.       case "RemoteInteractive":
  4532.         return "Terminal Server session that is both remote and interactive"; break;
  4533.  
  4534.       case 11:
  4535.       case "CachedInteractive":
  4536.         return "Attempt cached credentials without accessing the network"; break;
  4537.  
  4538.       case 12:
  4539.       case "CachedRemoteInteractive":
  4540.         return "Terminal Server session that is both remote and interactive (used for internal auditing)"; break;
  4541.  
  4542.       case 13:
  4543.       case "CachedUnlock":
  4544.         return "Workstation logon"; break;
  4545.  
  4546.       default: return "Unknown (" + String(code) + ")"; break;
  4547.     }
  4548.   }
  4549.  
  4550.   this._translate_user_account_type = function(code)
  4551.   {
  4552.     if(this._isempty(code)) return "";
  4553.  
  4554.     switch(code)
  4555.     {
  4556.       case 256: return "Local user account for user who has a primary account in another domain"; break;
  4557.       case 512: return "Default account type that represents a typical user"; break;
  4558.       case 2048: return "Account for a system domain that trusts other domains"; break;
  4559.       case 4096: return "Computer account for a Windows NT/Windows 2000 machine that is a member of this domain"; break;
  4560.       case 8192: return "Account for a system backup domain controller that is a member of this domain"; break;
  4561.       default: return "Other (" + String(code) + ")"; break;
  4562.     }
  4563.   }
  4564.  
  4565.   this._translate_privilege = function(code)
  4566.   {
  4567.     if(this._isempty(code)) return "";
  4568.  
  4569.     switch(code)
  4570.     {
  4571.       case 0: return "Guest"; break;
  4572.       case 1: return "User"; break;
  4573.       case 2: return "Administrator"; break;
  4574.       default: return "Unknown (" + String(code) + ")"; break;
  4575.     }
  4576.   }
  4577.  
  4578.   this._translate_pass_age = function(age)
  4579.   {
  4580.     if(String(age).indexOf(".") != -1)
  4581.     {
  4582.       var ages = String(age);
  4583.       var yrs = parseInt(ages.substring(0, 4)), mnths = parseInt(ages.substring(4, 6)),
  4584.            ds = parseInt(ages.substring(6, 8)),   hrs = parseInt(ages.substring(8, 10)),
  4585.            mn = parseInt(ages.substring(10, 12));
  4586.  
  4587.       return ((yrs > 0) ? yrs + " years" + ((mnths > 0) || (ds > 0) || (hrs > 0) || (mn > 0) ? ", " : "") : "") +
  4588.              ((mnths > 0) ? mnths + " months" + ((ds > 0) || (hrs > 0) || (mn > 0) ? ", " : "") : "") +
  4589.              ((ds > 0) ? ds + " days" + ((hrs > 0) || (mn > 0) ? ", " : "") : "") +
  4590.              ((hrs > 0) ? hrs + " hours" + ((mn > 0) ? ", " : "") : "") +
  4591.              ((mn > 0) ? mn + " minutes" : "");
  4592.     }
  4593.     else
  4594.       return age;
  4595.   }
  4596.  
  4597.   this._translate_application_boost = function(code)
  4598.   {
  4599.     if(this._isempty(code)) return "";
  4600.  
  4601.     switch(code)
  4602.     {
  4603.       case 0: return "None"; break;
  4604.       case 1: return "Minimum"; break;
  4605.       case 2: return "Maximum"; break;
  4606.       default: return "Unknown (" + String(code) + ")"; break;
  4607.     }
  4608.   }
  4609.  
  4610.   this._translate_type_of_os = function(code)
  4611.   {
  4612.     if(this._isempty(code)) return "";
  4613.  
  4614.     switch(code)
  4615.     {
  4616.       case 1: return "Other"; break;
  4617.       case 2: return "MACOS"; break;
  4618.       case 3: return "ATTUNIX"; break;
  4619.       case 4: return "DGUX"; break;
  4620.       case 5: return "DECNT"; break;
  4621.       case 6: return "Digital Unix"; break;
  4622.       case 7: return "OpenVMS"; break;
  4623.       case 8: return "HPUX"; break;
  4624.       case 9: return "AIX"; break;
  4625.       case 10: return "MVS"; break;
  4626.       case 11: return "OS400"; break;
  4627.       case 12: return "OS/2"; break;
  4628.       case 13: return "JavaVM"; break;
  4629.       case 14: return "MSDOS"; break;
  4630.       case 15: return "WIN3x"; break;
  4631.       case 16: return "WIN95"; break;
  4632.       case 17: return "WIN98"; break;
  4633.       case 18: return "WINNT"; break;
  4634.       case 19: return "WINCE"; break;
  4635.       case 20: return "NCR3000"; break;
  4636.       case 21: return "NetWare"; break;
  4637.       case 22: return "OSF"; break;
  4638.       case 23: return "DC/OS"; break;
  4639.       case 24: return "Reliant UNIX"; break;
  4640.       case 25: return "SCO UnixWare"; break;
  4641.       case 26: return "SCO OpenServer"; break;
  4642.       case 27: return "Sequent"; break;
  4643.       case 28: return "IRIX"; break;
  4644.       case 29: return "Solaris"; break;
  4645.       case 30: return "SunOS"; break;
  4646.       case 31: return "U6000"; break;
  4647.       case 32: return "ASERIES"; break;
  4648.       case 33: return "TandemNSK"; break;
  4649.       case 34: return "TandemNT"; break;
  4650.       case 35: return "BS2000"; break;
  4651.       case 36: return "LINUX"; break;
  4652.       case 37: return "Lynx"; break;
  4653.       case 38: return "XENIX"; break;
  4654.       case 39: return "VM/ESA"; break;
  4655.       case 40: return "Interactive UNIX"; break;
  4656.       case 41: return "BSDUNIX"; break;
  4657.       case 42: return "FreeBSD"; break;
  4658.       case 43: return "NetBSD"; break;
  4659.       case 44: return "GNU Hurd"; break;
  4660.       case 45: return "OS9"; break;
  4661.       case 46: return "MACH Kernel"; break;
  4662.       case 47: return "Inferno"; break;
  4663.       case 48: return "QNX"; break;
  4664.       case 49: return "EPOC"; break;
  4665.       case 50: return "IxWorks"; break;
  4666.       case 51: return "VxWorks"; break;
  4667.       case 52: return "MiNT"; break;
  4668.       case 53: return "BeOS"; break;
  4669.       case 54: return "HP MPE"; break;
  4670.       case 55: return "NextStep"; break;
  4671.       case 56: return "PalmPilot"; break;
  4672.       case 57: return "Rhapsody"; break;
  4673.       default: return "Unknown (" + String(code) + ")"; break;
  4674.     }
  4675.   }
  4676.  
  4677.   this._translate_language_of_os = function(code)
  4678.   {
  4679.     if(this._isempty(code)) return "";
  4680.  
  4681.     switch(code)
  4682.     {
  4683.       case 0x0001: return "Arabic"; break;
  4684.       case 0x0004: return "Chinese"; break;
  4685.       case 0x0009: return "English"; break;
  4686.       case 0x0401: return "Arabic (Saudi Arabia)"; break;
  4687.       case 0x0402: return "Bulgarian"; break;
  4688.       case 0x0403: return "Catalan"; break;
  4689.       case 0x0404: return "Chinese (Taiwan)"; break;
  4690.       case 0x0405: return "Czech"; break;
  4691.       case 0x0406: return "Danish"; break;
  4692.       case 0x0407: return "German (Germany)"; break;
  4693.       case 0x0408: return "Greek"; break;
  4694.       case 0x0409: return "English (United States)"; break;
  4695.       case 0x040A: return "Spanish (Traditional Sort)"; break;
  4696.       case 0x040B: return "Finnish"; break;
  4697.       case 0x040C: return "French (France)"; break;
  4698.       case 0x040D: return "Hebrew"; break;
  4699.       case 0x040E: return "Hungarian"; break;
  4700.       case 0x040F: return "Icelandic"; break;
  4701.       case 0x0410: return "Italian (Italy)"; break;
  4702.       case 0x0411: return "Japanese"; break;
  4703.       case 0x0412: return "Korean"; break;
  4704.       case 0x0413: return "Dutch (Netherlands)"; break;
  4705.       case 0x0414: return "Norwegian (Bokmal)"; break;
  4706.       case 0x0415: return "Polish"; break;
  4707.       case 0x0416: return "Portuguese (Brazil)"; break;
  4708.       case 0x0417: return "Rhaeto-Romanic"; break;
  4709.       case 0x0418: return "Romanian"; break;
  4710.       case 0x0419: return "Russian"; break;
  4711.       case 0x041A: return "Croatian"; break;
  4712.       case 0x041B: return "Slovak"; break;
  4713.       case 0x041C: return "Albanian"; break;
  4714.       case 0x041D: return "Swedish"; break;
  4715.       case 0x041E: return "Thai"; break;
  4716.       case 0x041F: return "Turkish"; break;
  4717.       case 0x0420: return "Urdu"; break;
  4718.       case 0x0421: return "Indonesian"; break;
  4719.       case 0x0422: return "Ukrainian"; break;
  4720.       case 0x0423: return "Belarusian"; break;
  4721.       case 0x0424: return "Slovenian"; break;
  4722.       case 0x0425: return "Estonian"; break;
  4723.       case 0x0426: return "Latvian"; break;
  4724.       case 0x0427: return "Lithuanian"; break;
  4725.       case 0x0429: return "Farsi"; break;
  4726.       case 0x042A: return "Vietnamese"; break;
  4727.       case 0x042D: return "Basque"; break;
  4728.       case 0x042E: return "Sorbian"; break;
  4729.       case 0x042F: return "Macedonian (FYROM)"; break;
  4730.       case 0x0430: return "Sutu"; break;
  4731.       case 0x0431: return "Tsonga"; break;
  4732.       case 0x0432: return "Tswana"; break;
  4733.       case 0x0434: return "Xhosa"; break;
  4734.       case 0x0435: return "Zulu"; break;
  4735.       case 0x0436: return "Afrikaans"; break;
  4736.       case 0x0438: return "Faeroese"; break;
  4737.       case 0x0439: return "Hindi"; break;
  4738.       case 0x043A: return "Maltese"; break;
  4739.       case 0x043C: return "Gaelic"; break;
  4740.       case 0x043D: return "Yiddish"; break;
  4741.       case 0x043E: return "Malay (Malaysia)"; break;
  4742.       case 0x0801: return "Arabic (Iraq)"; break;
  4743.       case 0x0804: return "Chinese (PRC)"; break;
  4744.       case 0x0807: return "German (Switzerland)"; break;
  4745.       case 0x0809: return "English (United Kingdom)"; break;
  4746.       case 0x080A: return "Spanish (Mexico)"; break;
  4747.       case 0x080C: return "French (Belgium)"; break;
  4748.       case 0x0810: return "Italian (Switzerland)"; break;
  4749.       case 0x0813: return "Dutch (Belgium)"; break;
  4750.       case 0x0814: return "Norwegian (Nynorsk)"; break;
  4751.       case 0x0816: return "Portuguese (Portugal)"; break;
  4752.       case 0x0818: return "Romanian (Moldova)"; break;
  4753.       case 0x0819: return "Russian (Moldova)"; break;
  4754.       case 0x081A: return "Serbian (Latin)"; break;
  4755.       case 0x081D: return "Swedish (Finland)"; break;
  4756.       case 0x0C01: return "Arabic (Egypt)"; break;
  4757.       case 0x0C04: return "Chinese (Hong Kong SAR)"; break;
  4758.       case 0x0C07: return "German (Austria)"; break;
  4759.       case 0x0C09: return "English (Australia)"; break;
  4760.       case 0x0C0A: return "Spanish (International Sort)"; break;
  4761.       case 0x0C0C: return "French (Canada)"; break;
  4762.       case 0x0C1A: return "Serbian (Cyrillic)"; break;
  4763.       case 0x1001: return "Arabic (Libya)"; break;
  4764.       case 0x1004: return "Chinese (Singapore)"; break;
  4765.       case 0x1007: return "German (Luxembourg)"; break;
  4766.       case 0x1009: return "English (Canada)"; break;
  4767.       case 0x100A: return "Spanish (Guatemala)"; break;
  4768.       case 0x100C: return "French (Switzerland)"; break;
  4769.       case 0x1401: return "Arabic (Algeria)"; break;
  4770.       case 0x1407: return "German (Liechtenstein)"; break;
  4771.       case 0x1409: return "English (New Zealand)"; break;
  4772.       case 0x140A: return "Spanish (Costa Rica)"; break;
  4773.       case 0x140C: return "French (Luxembourg)"; break;
  4774.       case 0x1801: return "Arabic (Morocco)"; break;
  4775.       case 0x1809: return "English (Ireland)"; break;
  4776.       case 0x180A: return "Spanish (Panama)"; break;
  4777.       case 0x1C01: return "Arabic (Tunisia)"; break;
  4778.       case 0x1C09: return "English (South Africa)"; break;
  4779.       case 0x1C0A: return "Spanish (Dominican Republic)"; break;
  4780.       case 0x2001: return "Arabic (Oman)"; break;
  4781.       case 0x2009: return "English (Jamaica)"; break;
  4782.       case 0x200A: return "Spanish (Venezuela)"; break;
  4783.       case 0x2401: return "Arabic (Yemen)"; break;
  4784.       case 0x240A: return "Spanish (Colombia)"; break;
  4785.       case 0x2801: return "Arabic (Syria)"; break;
  4786.       case 0x2809: return "English (Belize)"; break;
  4787.       case 0x280A: return "Spanish (Peru)"; break;
  4788.       case 0x2C01: return "Arabic (Jordan)"; break;
  4789.       case 0x2C09: return "English (Trinidad)"; break;
  4790.       case 0x2C0A: return "Spanish (Argentina)"; break;
  4791.       case 0x3001: return "Arabic (Lebanon)"; break;
  4792.       case 0x300A: return "Spanish (Ecuador)"; break;
  4793.       case 0x3401: return "Arabic (Kuwait)"; break;
  4794.       case 0x340A: return "Spanish (Chile)"; break;
  4795.       case 0x3801: return "Arabic (U.A.E.)"; break;
  4796.       case 0x380A: return "Spanish (Uruguay)"; break;
  4797.       case 0x3C01: return "Arabic (Bahrain)"; break;
  4798.       case 0x3C0A: return "Spanish (Paraguay)"; break;
  4799.       case 0x4001: return "Arabic (Qatar)"; break;
  4800.       case 0x400A: return "Spanish (Bolivia)"; break;
  4801.       case 0x440A: return "Spanish (El Salvador)"; break;
  4802.       case 0x480A: return "Spanish (Honduras)"; break;
  4803.       case 0x4C0A: return "Spanish (Nicaragua)"; break;
  4804.       case 0x500A: return "Spanish (Puerto Rico)"; break;
  4805.       default: return "Other (" + String(code) + ")"; break;
  4806.     }
  4807.   }
  4808.  
  4809.   this._translate_domain_role = function(code)
  4810.   {
  4811.     if(this._isempty(code)) return "";
  4812.  
  4813.     switch(code)
  4814.     {
  4815.       case 0: return "Standalone Workstation"; break;
  4816.       case 1: return "Member Workstation"; break;
  4817.       case 2: return "Standalone Server"; break;
  4818.       case 3: return "Member Server"; break;
  4819.       case 4: return "Backup Domain Controller"; break;
  4820.       case 5: return "Primary Domain Controller"; break;
  4821.       default: return "Unknown (" + String(code) + ")"; break;
  4822.     }
  4823.   }
  4824.  
  4825.   this._translate_power_state = function(code)
  4826.   {
  4827.     if(this._isempty(code)) return "";
  4828.  
  4829.     switch(code)
  4830.     {
  4831.       case 1: return "Full Power"; break;
  4832.       case 2: return "Power Save - Low Power Mode"; break;
  4833.       case 3: return "Power Save - Standby"; break;
  4834.       case 4: return "Power Save - Unknown"; break;
  4835.       case 5: return "Power Cycle"; break;
  4836.       case 6: return "Power Off"; break;
  4837.       case 7: return "Power Save - Warning"; break;
  4838.       default: return "Unknown (" + String(code) + ")"; break;
  4839.     }
  4840.   }
  4841.  
  4842.   this._translate_power_supply_state = function(code)
  4843.   {
  4844.     if(this._isempty(code)) return "";
  4845.  
  4846.     switch(code)
  4847.     {
  4848.       case 1: return "Other"; break;
  4849.       case 3: return "Safe"; break;
  4850.       case 4: return "Warning"; break;
  4851.       case 5: return "Critical"; break;
  4852.       case 6: return "Non-recoverable"; break;
  4853.       default: return "Unknown (" + String(code) + ")"; break;
  4854.     }
  4855.   }
  4856.  
  4857.   this._translate_wake_up = function(code)
  4858.   {
  4859.     if(this._isempty(code)) return "";
  4860.  
  4861.     switch(code)
  4862.     {
  4863.       case 0: return "Reserved"; break;
  4864.       case 1: return "Other"; break;
  4865.       case 3: return "APM Timer"; break;
  4866.       case 4: return "Modem Ring"; break;
  4867.       case 5: return "LAN Remote"; break;
  4868.       case 6: return "Power Switch"; break;
  4869.       case 7: return "PCI PME#"; break;
  4870.       case 8: return "AC Power Restored"; break;
  4871.       default: return "Unknown (" + String(code) + ")"; break;
  4872.     }
  4873.   }
  4874.  
  4875.   this._translate_debug_info_type = function(code)
  4876.   {
  4877.     if(this._isempty(code)) return "";
  4878.  
  4879.     switch(code)
  4880.     {
  4881.       case 0: return "None"; break;
  4882.       case 1: return "Complete memory dump"; break;
  4883.       case 2: return "Kernel memory dump"; break;
  4884.       case 3: return "Small memory dump"; break;
  4885.       default: return "Other (" + String(code) + ")";
  4886.     }
  4887.   }
  4888.  
  4889.   this._translate_odbc_registraton = function(code)
  4890.   {
  4891.     if(this._isempty(code)) return "";
  4892.  
  4893.     switch(code)
  4894.     {
  4895.       case 0: return "Per machine"; break;
  4896.       case 1: return "Per user"; break;
  4897.       default: return "Other (" + String(code) + ")";
  4898.     }
  4899.   }
  4900.  
  4901.   this._translate_true_false = function(code)
  4902.   {
  4903.     if(this._isempty(code)) return "";
  4904.  
  4905.     return (code == 1) ? "True" : "False";
  4906.   }
  4907.  
  4908.   this._translate_conseq_capabilities = function(code)
  4909.   {
  4910.     if(this._isempty(code)) return "";
  4911.  
  4912.     switch(code)
  4913.     {
  4914.       case 1: return "Other"; break;
  4915.       case 2: return "Sequential Access"; break;
  4916.       case 3: return "Random Access"; break;
  4917.       case 4: return "Supports Writing"; break;
  4918.       case 5: return "Encryption"; break;
  4919.       case 6: return "Compression"; break;
  4920.       case 7: return "Supports Removable Media"; break;
  4921.       case 8: return "Manual Cleaning"; break;
  4922.       case 9: return "Automatic Cleaning"; break;
  4923.       case 10: return "SMART Notification"; break;
  4924.       case 11: return "Supports Dual Sided Media"; break;
  4925.       case 12: return "Predismount Eject Not Required"; break;
  4926.       default: return "Unknown (" + String(code) + ")"; break;
  4927.     }
  4928.   }
  4929.  
  4930.   this._translate_answer_mode = function(code)
  4931.   {
  4932.     if(this._isempty(code)) return "";
  4933.  
  4934.     switch(code)
  4935.     {
  4936.       case 2: return "Other"; break;
  4937.       case 3: return "Disabled"; break;
  4938.       case 4: return "Manual Answer"; break;
  4939.       case 5: return "Auto Answer"; break;
  4940.       case 6: return "Auto Answer with Call-Back"; break;
  4941.       default: return "Unknown (" + String(code) + ")"; break;
  4942.     }
  4943.   }
  4944.  
  4945.   this._translate_dial_tone = function(code)
  4946.   {
  4947.     if(this._isempty(code)) return "";
  4948.  
  4949.     switch(code)
  4950.     {
  4951.       case 1: return "Tone"; break;
  4952.       case 2: return "Pulse"; break;
  4953.       default: return "Unknown (" + String(code) + ")"; break;
  4954.     }
  4955.   }
  4956.  
  4957.   this._translate_modem_port = function(code)
  4958.   {
  4959.     if(this._isempty(code)) return "";
  4960.  
  4961.     switch(parseInt(code.charAt(2)))
  4962.     {
  4963.       case 0: return "Parallel Port"; break;
  4964.       case 1: return "Serial Port"; break;
  4965.       case 2: return "Modem"; break;
  4966.       default: return "Other (" + String(code) + ")"; break;
  4967.     }
  4968.   }
  4969.  
  4970.   this._translate_print_color = function(code)
  4971.   {
  4972.     if(this._isempty(code)) return "";
  4973.  
  4974.     switch(code)
  4975.     {
  4976.       case 1: return "Monochrome"; break;
  4977.       case 2: return "Color"; break;
  4978.       default: return "Other (" + String(code) + ")";
  4979.     }
  4980.   }
  4981.  
  4982.   this._translate_print_dither_type = function(code)
  4983.   {
  4984.     if(this._isempty(code)) return "";
  4985.  
  4986.     switch(code)
  4987.     {
  4988.       case 1: return "No Dithering"; break;
  4989.       case 2: return "Coarse Brush"; break;
  4990.       case 3: return "Fine Brush"; break;
  4991.       case 4: return "Line Art"; break;
  4992.       case 5: return "Greyscale"; break;
  4993.       default: return "Other (" + String(code) + ")";
  4994.     }
  4995.   }
  4996.  
  4997.   this._translate_print_icm_intent = function(code)
  4998.   {
  4999.     if(this._isempty(code)) return "";
  5000.  
  5001.     switch(code)
  5002.     {
  5003.       case 1: return "Saturation"; break;
  5004.       case 2: return "Contrast"; break;
  5005.       case 3: return "Exact Color"; break;
  5006.       default: return "Other (" + String(code) + ")";
  5007.     }
  5008.   }
  5009.  
  5010.   this._translate_print_icm_method = function(code)
  5011.   {
  5012.     if(this._isempty(code)) return "";
  5013.  
  5014.     switch(code)
  5015.     {
  5016.       case 1: return "Disabled"; break;
  5017.       case 2: return "Windows"; break;
  5018.       case 3: return "Device Driver"; break;
  5019.       case 4: return "Device"; break;
  5020.       default: return "Other (" + String(code) + ")";
  5021.     }
  5022.   }
  5023.  
  5024.   this._translate_print_media_type = function(code)
  5025.   {
  5026.     if(this._isempty(code)) return "";
  5027.  
  5028.     switch(code)
  5029.     {
  5030.       case 1: return "Standard"; break;
  5031.       case 2: return "Transparency"; break;
  5032.       case 3: return "Glossy"; break;
  5033.       default: return "Other (" + String(code) + ")";
  5034.     }
  5035.   }
  5036.  
  5037.   this._translate_print_orientation = function(code)
  5038.   {
  5039.     if(this._isempty(code)) return "";
  5040.  
  5041.     switch(code)
  5042.     {
  5043.       case 1: return "Portrait"; break;
  5044.       case 2: return "Landscape"; break;
  5045.       default: return "Other (" + String(code) + ")";
  5046.     }
  5047.   }
  5048.  
  5049.   this._translate_print_true_type_option = function(code)
  5050.   {
  5051.     if(this._isempty(code)) return "";
  5052.  
  5053.     switch(code)
  5054.     {
  5055.       case 1: return "TrueType fonts as graphics"; break;
  5056.       case 2: return "TrueType fonts as soft fonts (PCL printers)"; break;
  5057.       case 3: return "Substitute device fonts for TrueType fonts"; break;
  5058.       default: return "Other (" + String(code) + ")";
  5059.     }
  5060.   }
  5061.  
  5062.   this._translate_service_philosophy = function(code)
  5063.   {
  5064.     if(this._isempty(code)) return "";
  5065.  
  5066.     switch(code)
  5067.     {
  5068.       case 0: return "Unknown"; break;
  5069.       case 2: return "Service From Top"; break;
  5070.       case 3: return "Service From Front"; break;
  5071.       case 4: return "Service From Back"; break;
  5072.       case 5: return "Service From Side"; break;
  5073.       case 6: return "Sliding Trays"; break;
  5074.       case 7: return "Removable Sides"; break;
  5075.       case 8: return "Moveable"; break;
  5076.       default: return "Other (" + String(code) + ")"; break;
  5077.     }
  5078.   }
  5079.  
  5080.   this._translate_chassis_type = function(code)
  5081.   {
  5082.     if(this._isempty(code)) return "";
  5083.  
  5084.     switch(Number(code))
  5085.     {
  5086.       case 2:  return "Unknown"; break;
  5087.       case 3:  return "Desktop"; break;
  5088.       case 4:  return "Low Profile Desktop"; break;
  5089.       case 5:  return "Pizza Box"; break;
  5090.       case 6:  return "Mini Tower"; break;
  5091.       case 7:  return "Tower"; break;
  5092.       case 8:  return "Portable"; break;
  5093.       case 9:  return "Laptop"; break;
  5094.       case 10: return "Notebook"; break;
  5095.       case 11: return "Hand Held"; break;
  5096.       case 12: return "Docking Station"; break;
  5097.       case 13: return "All in One"; break;
  5098.       case 14: return "Sub Notebook"; break;
  5099.       case 15: return "Space-Saving"; break;
  5100.       case 16: return "Lunch Box"; break;
  5101.       case 17: return "Main System Chassis"; break;
  5102.       case 18: return "Expansion Chassis"; break;
  5103.       case 19: return "SubChassis"; break;
  5104.       case 20: return "Bus Expansion Chassis"; break;
  5105.       case 21: return "Peripheral Chassis"; break;
  5106.       case 22: return "Storage Chassis"; break;
  5107.       case 23: return "Rack Mount Chassis"; break;
  5108.       case 24: return "Sealed-Case PC"; break;
  5109.       default: return "Other (" + String(code) + ")"; break;
  5110.     }
  5111.   }
  5112. };